or
| <Window x:Class="TestApplication.Window1" |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| xmlns:qsf="clr-namespace:Telerik.Windows.QuickStart;assembly=Telerik.Windows.QuickStart" |
| Title="Window1" Height="300" Width="300" |
| xmlns:radDock="http://schemas.telerik.com/2008/xaml/presentation"> |
| <Grid> |
| <radDock:RadDocking> |
| <radDock:RadDocking.DocumentHost> |
| <radDock:RadSplitContainer> |
| <radDock:RadPaneGroup> |
| <radDock:RadDocumentPane Title="Description"> |
| <radDock:RadDocumentPane.Content> |
| <TextBlock TextWrapping="Wrap" |
| Text="On the Documents tab above press Ctrl + Mouse Left button to display the Popup Menu. You can use the same combination on every tab." /> |
| </radDock:RadDocumentPane.Content> |
| </radDock:RadDocumentPane> |
| <radDock:RadPane Header="NotDragable" CanFloat="False"> |
| <radDock:RadPane.Content> |
| <TextBlock TextWrapping="Wrap" |
| Text="This pane cannot be dragged, because it has its property CanFloat set 'False'." /> |
| </radDock:RadPane.Content> |
| </radDock:RadPane> |
| </radDock:RadPaneGroup> |
| </radDock:RadSplitContainer> |
| </radDock:RadDocking.DocumentHost> |
| </radDock:RadDocking> |
| </Grid> |
| </Window> |

