How to disable LinkLabel TabStop?

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

What happens and how to disable TabStop for LinkLabel?

+4
source share
1 answer

In the code, you can set the value to false:

 linkLabel1.TabStop = false; 

I don’t know why this does not match the value set in the constructor, it looks like it has a default value of True, but the designer believes that its default value is false.

+8
source

Source: https://habr.com/ru/post/1386752/


All Articles