Linklabel fires LinkClicked event when enabled=false

0
0

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

  • You must to post comments
0
0

Hi Mitch,

WJ-7920 is included in the latest build (1.3.22).

Best regards
Frank

  • You must to post comments
0
0

Thanks Mitch,

we have logged this bug as WJ-7920 and will inform you when the fix is released.

Best regards
Frank

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.