views:

15

answers:

0

I have a class with a member

 ObservableCollection<Point> Points;

I want a custom usercontrol that shows a canvas with these points on it, drawn as a closed polygon, and the user should be able to select and move individual points.

I've googled around and found a lot of stuff on adorners, moving controls etc., but I'm still confused on how to go about creating the control as I need it. (preferrably using databinding...)

Any tips, hints, or links that could point me in the right direction would be greatly appreciated !