Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 474
net_prog Avatar asked Feb 22 '23 02:02

net_prog


1 Answers

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.

like image 175
John Koerner Avatar answered Apr 10 '23 06:04

John Koerner