Hi,
I hope you can help me on this one. I'm using the WPF Extensions toolkit, and it's a great piece of work. More precisely I'm using the zoomcontrol to show a map with some units on it (the units have the DragableBehavior attached)
Everything was working fine, until yesterday were I was told to implement a new feature in our application - scaling of the units.
If I scale the units (which are UserControls) to under 50% the drag-behavior totally messed up.
I can re-produce the error in your own test-application by putting in the following:
<Rectangle.RenderTransform>
<ScaleTransform CenterX="0" CenterY="0" ScaleX="0.3" ScaleY="0.3" />
</Rectangle.RenderTransform>
In one of the Rectangles in the "NEW ZoomControl" tab.
Start the project and try to drag the rectangle with the scaletransform. It will behave very strange and not as expected.
I hope you can help me out here...
Thanks!
/Mikkel