Basically I have the following xaml:
<Window ...>
<StackPanel>
<my:UserControl> ... </my:UserControl>
<my:UserControl> ... </my:UserControl>
</StackPanel>
</Window>
- If my mouse left clicks within the I want to capture the X/Y coordinate.
- I want to capture the current MouseX/MouseY as as long as the mouse is within the Window.
- I want to use that capture in an event that is triggered everytime the mouse is moved while holding down the left click.
It's sort of like a drag/drop, but not necessarily a drag/drop... if using drag/drop will solve this than that's fine, I'll use that. But, I'm not sure where to really start.