
Hi,
How to restrict the resize of the toolwindow upto a particular height or the width using the dockingSpliter ?
<docking:DockSite x:Name="BaseDocksite1"><docking:Workspace>
<docking:DockSite Grid.Row="0" x:Name="docksite1" WindowDragging="docksite1_WindowDragging">
<docking:ToolWindowContainer>
<docking:ToolWindow x:Name="Toolwindow1" Title="window1" CanRaft="True">
<Button Height="Auto" Content="SampleToolWindow"></Button>
</docking:ToolWindow>
</docking:ToolWindowContainer>
</docking:DockSite>
</docking:Workspace>
</docking:DockSite>
As in the ablove sample docksite1 is linked with the BaseDocksite1.Suppose i drag the toolwindow1 from the docksite1 and docked it to the top of the Basedocksite1 and suppose now the height of the toolwindow1 is 100 and Limit the resize of the toolwindow should be like that user should not be able to resize the toolwindow1 using the docking splitter of height from less than 75 and user can resize the toolwindow1 of height more than 75.