Click here to Skip to main content
15,886,806 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I have many textboxes(TextBox1, TextBox2,TextBox3,TextBox4,TextBox5...etc) and one button(Button 1) in a wpf usercontrol.In the xaml file these textboxes are not in order. so tab is not working properly.is there any way to solve this issue?Please Help me....

Thanks,
Kunjammu
Posted
Comments
Abhishek Pant 20-Dec-12 5:13am    
reorder them is the best way to resolve.. :D :D
Kunjammu 20-Dec-12 5:27am    
:( :(
any other way.......?

1 solution

Hello
You can use the control's TabIndex property.
Like TabIndex="0" (number from low to high).

You may also set the IsTabStop property to "True" or "False" wether you like the control to be included in the tab loop or not.
<textbox text="tabbed" istabstop="True" tabindex="0" />
<textbox text="Tabbed" istabstop="True" tabindex="1" />
<textbox text="Skipped" istabstop="False" />
<button content="Done" istabstop="True" tabindex="2" />

Hope it helps!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900