How to draw the following code on a transparent layer in ipad. The layer have
to be started (context.BeginTransparencyLayer()) when drawing begins and
have to be ended(context.BeginTransparencyLayer()) after one drawing is
completed(touch ended). The drawing function calls for every touch begin to
touch ended...

currently I'm using the following code to draw in iPad
*
context.MoveTo (penVertices [0].X, penVertices [0].Y);

for (int i = 1; i < penVertices.Count; i++) {

context.AddLineToPoint (penVertices [i].X, penVertices [i].Y);

}
context.StrokePath();*

Please help me...



--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/How-to-Draw-on-Layers-IPAD-tp4658226.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to