tags:

views:

19

answers:

3

hello all

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

A: 

Use TabIndex property to set the tab order.

Amod
but Image control doesn't have tab index and i want to set the tab order on this
Chunmun Tyagi
A: 

Try this

<ComboBox KeyboardNavigation.TabIndex="0"/>
Kishore Kumar
but its not working on image control i m taking some images instead of button i wan to fix the tab order on it
Chunmun Tyagi
A: 

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

<Image Focusable="True" KeyboardNavigation.TabIndex="1" Source="img.png" />
Amod
thanks its works well
Chunmun Tyagi