How to set TAborder in wpf

后端 未结 3 1801
无人及你
无人及你 2021-01-22 06: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 solv

相关标签:
3条回答
  • 2021-01-22 06:36

    Use TabIndex property to set the tab order.

    0 讨论(0)
  • 2021-01-22 06:46

    Try this

    <ComboBox KeyboardNavigation.TabIndex="0"/>
    
    0 讨论(0)
  • 2021-01-22 06:58

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

    <Image Focusable="True" KeyboardNavigation.TabIndex="1" Source="img.png" />
    
    0 讨论(0)
提交回复
热议问题