Hi,
I'd like to implement an MDI-like workspace in xbap application, is there any container for multiple RadWindows?
In my xbap application, I'd like the content-region would hold multiple RadWindows which can be dragged around, minimized, maximized, etc.
For dragging, I'd like it so that the windows themselves cannot be dragged outside of the mdi-window content region.
I'd appreciate any help/sample solution on how to implement this.
My xaml code is as follows:I have try to create MDI RadWindows in container1, but failed.
<telerik:RadDocking Name="radDocking1" Grid.Column="1" Grid.Row="1" AllowUnsafeMode="True"> |
<telerik:RadDocking.DocumentHost> |
<telerik:RadSplitContainer InitialPosition="DockedLeft" Name="container1" HorizontalContentAlignment="Left"> |
<telerik:RadPaneGroup Name="editGroup"> |
</telerik:RadPaneGroup> |
</telerik:RadSplitContainer> |
</telerik:RadDocking.DocumentHost> |
<telerik:RadSplitContainer telerik:DockingPanel.InitialSize="150,150" InitialPosition="DockedBottom" Height="250"> |
<telerik:RadPaneGroup Name="listGroup"> |
<telerik:RadDocumentPane Title="Error Message" Name="errorMSGPane"> |
<telerik:RadDocumentPane.Content> |
<TextBlock Name="tberrorMSG" Foreground="Red"> </TextBlock> |
</telerik:RadDocumentPane.Content> |
</telerik:RadDocumentPane> |
</telerik:RadPaneGroup> |
</telerik:RadSplitContainer> |
</telerik:RadDocking> |