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:\\";
}