سؤال

There are Windows Form with some text controls and button. User with TAB and Enter can focus next element. Button should be skipped.

How can I omit Windows Forms Control (OpennetCF Button2) from the tabbing order?

هل كانت مفيدة؟

المحلول

You just set its TabStop property to false

button1.TabStop = false;
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top