I have a problem when using the tab key.
When I run the code below and press the tab key repeatedly displays error messages:
"Object reference not set to an instance of an object."
Step run => tab tab tab => exception
<
Window
x:Class
=
"DockingException.MainWindow"
xmlns:local
=
"clr-namespace:DockingException"
xmlns:telerikDocking
=
"clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
mc:Ignorable
=
"d"
Title
=
"MainWindow"
Height
=
"350"
Width
=
"525"
>
<
Grid
>
<
telerikDocking:RadDocking
RetainPaneSizeMode
=
"DockingAndFloating"
>
<
telerikDocking:RadDocking.CompassStyle
>
<
Style
TargetType
=
"telerik:Compass"
>
<
Setter
Property
=
"IsCenterIndicatorVisible"
Value
=
"false"
/>
<
Setter
Property
=
"IsLeftIndicatorVisible"
Value
=
"false"
/>
<
Setter
Property
=
"IsRightIndicatorVisible"
Value
=
"false"
/>
<
Setter
Property
=
"IsTopIndicatorVisible"
Value
=
"false"
/>
<
Setter
Property
=
"IsBottomIndicatorVisible"
Value
=
"False"
/>
</
Style
>
</
telerikDocking:RadDocking.CompassStyle
>
<
telerik:RadDocking.RootCompassStyle
>
<
Style
TargetType
=
"telerik:RootCompass"
>
<
Setter
Property
=
"IsTopIndicatorVisible"
Value
=
"false"
/>
<
Setter
Property
=
"IsLeftIndicatorVisible"
Value
=
"false"
/>
<
Setter
Property
=
"IsRightIndicatorVisible"
Value
=
"false"
/>
<
Setter
Property
=
"IsBottomIndicatorVisible"
Value
=
"True"
/>
</
Style
>
</
telerik:RadDocking.RootCompassStyle
>
<!--MainContent-->
<
telerik:RadDocking.DocumentHost
>
<
Grid
>
</
Grid
>
</
telerik:RadDocking.DocumentHost
>
<!--/MainContent-->
<
telerik:RadSplitContainer
InitialPosition
=
"DockedBottom"
Height
=
"500"
>
<
telerik:RadPaneGroup
>
<
telerik:RadPane
IsHidden
=
"True"
IsPinned
=
"True"
CanUserPin
=
"False"
PaneHeaderVisibility
=
"Collapsed"
CanUserClose
=
"False"
>
</
telerik:RadPane
>
</
telerik:RadPaneGroup
>
</
telerik:RadSplitContainer
>
</
telerikDocking:RadDocking
>
</
Grid
>
</
Window
>