Hi Matt,
The problem comes from the default values of the
TabNavigation properties, below is a style that will fix this:
| <Style TargetType="telerik:RadTabControl"> |
| <Setter Property="IsTabStop" |
| Value="False" /> |
| <Setter Property="KeyboardNavigation.TabNavigation" |
| Value="Continue" /> |
| <Setter Property="ItemsPanel"> |
| <Setter.Value> |
| <ItemsPanelTemplate> |
| <primitive:TabStripPanel x:Name="TabStripPanel" |
| KeyboardNavigation.TabNavigation="Once" |
| KeyboardNavigation.DirectionalNavigation="Local" /> |
| </ItemsPanelTemplate> |
| </Setter.Value> |
| </Setter> |
| </Style> |
| |
I have also attached a project where the fix is implemented.
You will be able to remove this style with the next release of the WPF controls.
Your points have been updated as per our
EAP Program.
Best wishes,
Miroslav
the Telerik team
Check out
Telerik Trainer, the state of the art learning tool for Telerik products.