Pregunta

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?

¿Fue útil?

Solución

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top