Is there a way to prevent a control from receiving focus when tabbing through elements?
I'd like to do this in XAML.
Here's an example, where I'd like to keep the second textbox from receiving focus when tabbing through controls:
<StackPanel>
<TextBox Name="tb1"></TextBox>
<TextBox Name="tb2"></TextBox>
</StackPanel>