net_prog
net_prog

Reputation: 10271

How to disable LinkLabel TabStop?

I place a LinkLabel on a form, by default it has TabStop=true. I change TabStop to false and close the form. Then open the form again - TabStop is true.

What happens and how do I disable TabStop for LinkLabel?

Upvotes: 4

Views: 2416

Answers (1)

John Koerner
John Koerner

Reputation: 38077

You can set it to false in the code:

linkLabel1.TabStop = false;

I don't know why it doesn't respect the value set in the designer, it almost looks like it has a default value of True, but the designer thinks its default is false.

Upvotes: 8

Related Questions