Hi guys,
There seems to be a bug in the LinkLabel. If you set enabled to false, the link is still active.
here is a minimal program showing the behavior
public Window1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.linkLabel1.Enabled = false;
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
MessageBox.Show(“The Linklabel.enabled = ” + this.linkLabel1.Enabled.ToString());
}
http://screencast.com/t/zDQfvuJPaiTe
Thanks
Mitch
Hi Mitch,
WJ-7920 is included in the latest build (1.3.22).
Best regards
Frank
Thanks Mitch,
we have logged this bug as WJ-7920 and will inform you when the fix is released.
Best regards
Frank
Please login first to submit.