I just switched from the Microsoft TabControl to your RadTabControl because the Narrator reads the header better where we underline the hot-key in the RadTabItem.Header.
However, I just realized a big problem. Now many of the primitive controls like Buttons, TextBoxes and Hyperlinks are no longer read correctly. Instead of reading their content like they should (and like it did inside the Microsoft Tab Control), it now reads the description for the RadTabControl for most primitive controls inside the RadTabItem.
You can reproduce this by using the following code and starting the Narrator (Control Panel/Ease of Access/Ease of Access Center/Start Narrator. I uncheck all the boxes in the narrator window except Start Narrator Minimized. When you tab through the controls, clearly the ones inside the RadTabItem do not read correctly and the ones outside the RadTabItem are fine (except the first time you land outside of the Tab).
Hopefully there is a fix or a work around for this problem.
Thanks,
-Mark
*********************************************************************************************
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<telerik:RadTabControl x:Name="_tabControl" Height="300">
<telerik:RadTabItem Header="Tab1">
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center">
<Button Content="Button To Click1"/>
<Button Content="Button To Click2"/>
<Button Content="Button To Click3"/>
<TextBox Text="blah blah blah"/>
</StackPanel>
</telerik:RadTabItem>
<telerik:RadTabItem Header="Tab2">
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center">
<Button Content="Button To Click1"/>
<Button Content="Button To Click2"/>
<Button Content="Button To Click3"/>
<TextBox Text="blah blah blah"/>
</StackPanel>
</telerik:RadTabItem>
</telerik:RadTabControl>
<StackPanel Margin="0,20,0,0" Grid.Row="1">
<Button Content="Button To Click1"/>
<Button Content="Button To Click2"/>
<Button Content="Button To Click3"/>
<TextBox Text="blah blah blah"/>
</StackPanel>
</Grid>