0

I have designed a wpf page. But I not able to set Proper Tab Navigation on it. Controls (Specialy gridview) on the page are not following tab index.
In my Gridview,there is textbox ,and i want to set the tab navigation on it.Any idea....

Thank you.

Darren Kopp
  • 76,581
  • 9
  • 79
  • 93
Jinesh
  • 1,480
  • 2
  • 25
  • 52

1 Answers1

1

Tabbing does behave strange in wpf due to the single tab scope of the ui-tree. You could perhaps try to set is IsTabStop property to ensure that wpf registers the tabstop.

Remember that for complex ui's with embeded layout elementsit might not be a bad idea to bind the tab-navigation to that of the container control.

have a look at this post: WPF Tab Key Navigation Rachel explains the problem quite elegantly.

Community
  • 1
  • 1
Spook Kruger
  • 367
  • 3
  • 15