Temporarily remove control from tab order (round)
I have a panel with many controls on it. Tab order is assigned. I want 开发者_如何学JAVAto remove some control from tab order (round). And then restore it. How ?
runtime
.net 2.0 (please, no linq)
Set the TabStop
property to false
.
Setting the TabStop
property of a control to false
will prevent it from being included in the tab order. To restore it, just set TabStop
to true
again.
精彩评论