Tagged Questions

5
votes
2answers
276 views

IsTabStop = False on a SL4 Text box

I set IsTabStop to false on a text box and I know that this makes the control unable to receive focus, but according to the Silverlight Forums, it should still be able to receive mouse events. I have ...
1
vote
1answer
728 views

What can act as a tab stop in silverlight?

I am working on a silverlight application with a significant number of invisible tab stops. I am currently busy trying to track them all down and eliminate them. I am aware that any control that ...
0
votes
1answer
73 views

How to control tabbing order without disabling all focus for controls in this scenario

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 ...
0
votes
2answers
144 views

What stops the tab?

I have the following xaml: <ListBox ItemsSource="{Binding Path=ItemProperties.GeneralProperties}" Grid.Row="1" Margin="0" Style="{StaticResource ListBoxStyle1}"> ...