I have a simple RadPanelBar with ExpandMode="Single" where every item contains a TextBox. Is it possible to enable the user to tab between the TextBoxes?
Let's say I have this GUI:
<Grid>    <Grid.RowDefinitions>        <RowDefinition Height="25" />        <RowDefinition Height="10" />        <RowDefinition Height="200" />        <RowDefinition Height="10" />        <RowDefinition Height="25" />    </Grid.RowDefinitions>
    <TextBox Name="TextBoxA" Grid.Row="0" />
    <telerikControls:RadPanelBar Grid.Row="2" Orientation="Vertical" ExpandMode="Single" >        <telerikControls:RadPanelBarItem Header="Test 1" IsExpanded="True" >            <TextBox Name="TextBoxB1" />        </telerikControls:RadPanelBarItem>        <telerikControls:RadPanelBarItem Header="Test 2" IsExpanded="True" >            <TextBox Name="TextBoxB2" />        </telerikControls:RadPanelBarItem>    </telerikControls:RadPanelBar>
    <TextBox Name="TextBoxC" Grid.Row="4" /></Grid>
This is my desired behavior:
- The user has focus on TextBoxA.
 - The uses presses Tab -> Focus is moved to TextBoxB1
 - The uses presses Tab -> Focus is moved to TextBoxB2, and the corresponding PanelBarItem is expanded
 - The uses presses Tab -> Focus is moved to TextBoxC
 
Is this possible?