How can I make a MS Paint clone in WPF?
I use Canvas and Shapes, but I don't know how to implement erasing. Should I use different controls, image control for example, or other drawing technology?
How can I make a MS Paint clone in WPF?
I use Canvas and Shapes, but I don't know how to implement erasing. Should I use different controls, image control for example, or other drawing technology?
You can simply remove the object from the Canvas using canvas.Children.Remove() methods.
It will delete shape from canvas, but I need erase like in MsPaint(deleat part of this shape).