Kate Brown
Kate Brown

Reputation: 562

How to draw shapes in WP7 with the finger?

How to draw shapes in WP7 with the finger? I am trying to implement a simple paint application but I am not sure how to make the drawing.

Upvotes: 3

Views: 2956

Answers (3)

Raghav Manikandan
Raghav Manikandan

Reputation: 679

There are two examples for you, you can download it from the below links.

Sample Project 1

Sample Project 2

Upvotes: 2

CheeZe5
CheeZe5

Reputation: 995

Line Handle the StylusDown, StylusMove, and StylusUp events. Draw lines as appropriate depending on if you want straight vs. free form lines.

Upvotes: 0

Stuart
Stuart

Reputation: 66882

fingerpaint is your friend

FingerPaint

Note that the two sets of code aren't quite the same - the C# fingerpaint had some issues about drawing new tracks on top of old ones so I modified this when I wrote the Ruby one.

Also note that to take this further, you should probably support multitouch.

Upvotes: 1

Related Questions