Hi,
I am able to display toolwindows inside the single toolwindow using followind code.
<docking:DockSite x:Name="DOCKSITE1">
<docking:ToolWindowContainer>
<docking:ToolWindow x:Name="BaseToolWindow">
<docking:SplitContainer Orientation="Horizontal">
<docking:ToolWindowContainer><docking:ToolWindow x:Name="TW1" Title="aas">
</docking:ToolWindow>
</docking:ToolWindowContainer>
<docking:ToolWindowContainer><docking:ToolWindow Title="fdfdf" x:Name="TW2"></docking:ToolWindow>
</docking:ToolWindowContainer>
<docking:ToolWindowContainer><docking:ToolWindow Title="dddd" x:Name="TW3"></docking:ToolWindow>
</docking:ToolWindowContainer>
</docking:SplitContainer>
</docking:ToolWindow>
</docking:ToolWindowContainer>
</docking:DockSite>
Above sample consist of BaseToolwindow and its three child toolwindows named tw1,tw2,tw3 respectively.
If i float any of the child toolwindow from the base toolwindow and then double click the floated toolwindow it will repositioned to the Basetoolwindow.
But the problem is if i float the entire BaseToolWindow and the float any of the child toolwindow and then double click the floated child toolwindow and then double click the floated BaseToolWindow then my layout of the Base-Child toolwindows changes.