Im using some controls like text box,buttons...etc in a wpf page
all these controls are in a grid and im using KeyboardNavigation.TabNavigation="Cycle" for that grid...
and its working fine....
now in that i dont want the tab to go on a certain control...means i would like to skip a tab in this cycle and move to another control
to explain : suppose im having 4 controls..
when i tab it goes to 1,2,3,4....
but i would like to skip 3 and go directly to 4 from 2
hope u understood....can anyone help me....
Loading
Sam HobbsPosted Apr 16, 2012, 2:21 PM
I am experienced with the Windows API and with Windows Forms. All WPF controls consist of a Windows API control so knowledge of the way that Windows API controls work are often relevant to WPF controls too. Windows API controls have a property that determines whether the control is a tab stop. See the Control.IsTabStop Property; it is the corresponding WPF property. WPF controls that derive from the WPF Control class (most or all do) will have the IsTabStop property. Use that property.
Yadlapalli SrikanthPosted Apr 16, 2012, 12:58 AM