Hi,
How to Block the docking of the toolwindow of the docksite inside its own docksite.
For Example,
<Window>
<docking:DockSite x:Name="docksite1"Grid.Row="0" WindowDragging="docksite1_WindowDragging">
<docking:ToolWindowContainer>
<docking:ToolWindow Title="SAMPLE1" Name="tw1" CanAttach="False">
</docking:ToolWindow>
</docking:DockSite>
</Window>
Above docking application consist of only single docksite and this docksite have only 1 docking window ie.SAMPLE1.
If i drag the docking window then dockguide icons will be displayed in its own docksite.
Can i hide these dockguide icons while dragging the docking window from this docksite ?
As WindowDragging and Window Dragged or WindowActivated events are there so Is there any eventhandler for addding the docking window in the docksite(like WindowAdded) ?