Shashank
Shashank

Reputation: 6367

How to set TAborder in wpf

i have a problem i make a wpf application its running well.but i want to set the tab order of each my form but i don't get any taborder in Vs2008 express edition how can i solve this is any body help me thanks in advance shashank

Upvotes: 2

Views: 2581

Answers (3)

Amod
Amod

Reputation: 106

To get the TabIndex work on Image control set the following property

<Image Focusable="True" KeyboardNavigation.TabIndex="1" Source="img.png" />

Upvotes: 4

Kishore Kumar
Kishore Kumar

Reputation: 21873

Try this

<ComboBox KeyboardNavigation.TabIndex="0"/>

Upvotes: 0

Amod
Amod

Reputation: 106

Use TabIndex property to set the tab order.

Upvotes: 0

Related Questions