I have a simple setup and want the toolwindow to activate when I drag something over it, that something not being another toolwindow. I thought I would just catch the DragOver or DragEnter events, but they never seem to fire. Any ideas?
Simple example:Jeremy Noonan
IMA Technologies
Simple example:
<docking:DockSite x:Name="DockSite"
AutoHidePopupOpensOnMouseHover="True"
Background="Transparent"
CanToolWindowsClose="False"
ToolWindowsHaveOptions="False"
AutoHidePopupCloseAnimationDuration="0:0:0.2">
<docking:DockSite.AutoHideRightContainers>
<docking:ToolWindowContainer>>
<docking:ToolWindow Title="Drag over me to open">
<TextBlock Text="Hello there"/>
</docking:ToolWindow>
</docking:ToolWindowContainer>
</docking:DockSite.AutoHideRightContainers>
</docking:DockSite>
IMA Technologies