Completed
Last Updated: 19 Aug 2016 09:20 by ADMIN
ADMIN
Hristo
Created on: 17 Aug 2016 08:15
Category: UI Framework
Type: Bug Report
0
FIX. TPF- Html-like text incorrectly escapes the "<" character in certain cases
How to reproduce:

public Form1()
{
    InitializeComponent();
}

private void radButton1_Click(object sender, EventArgs e)
{
    this.radLabel1.Text = "<html><u>D:\\</u>";
}



Workaround:

public Form1()
{
    InitializeComponent();
}

private void radButton1_Click(object sender, EventArgs e)
{
    this.radLabel1.Text = "<html><u>D:\\";
}
0 comments