views:

94

answers:

2

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?

A: 

You can simply remove the object from the Canvas using canvas.Children.Remove() methods.

Jalfp
A: 

It will delete shape from canvas, but I need erase like in MsPaint(deleat part of this shape).

jeris
Please don't answer your own questions; this isn't a forum. You may want to check out the FAQ section.
Leonardo Herrera