开发者

How to set TAborder in wpf

开发者 https://www.devze.com 2023-01-04 09:28 出处:网络
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

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 than开发者_如何学Pythonks in advance shashank


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

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


Use TabIndex property to set the tab order.


Try this

<ComboBox KeyboardNavigation.TabIndex="0"/>
0

精彩评论

暂无评论...
验证码 换一张
取 消