I got a control that looks like this , it has several text boxes
[1 ][2 ][3 ][4 ]
Now in my app those controls are forming a somekind of a matrix like
[1 ][2 ][3 ][4 ]
[1 ][2 ][3 ][4 ]
[1 ][2 ][3 ][4 ]
Now I wanted to set 1 3 and 4 IsTabStop = false so user can tab through 2nd textboxes only.
After I have done that I found out that 1 3 4 now cannot be focused. And to my surprise in WPF this is not true, so its just another Silverlight unexpected limitation!
http://msdn.microsoft.com/ru-ru/library/system.windows.controls.control.istabstop(v=vs.95).aspx
How to proceed with my initial tabbing through [2 ] plan?
I believe you can extend the TextBox control to have it focusable. See this post.
Attached Property
XAML
You can basically attach this to anything that’s inherited from Control.