Ejemplo n.º 1
0
 void Add(GraphicsPathCommandDelegate apply, params PointF[] points)
 {
     commands.Add(new ActionCommand(apply)
     {
         Points = points
     });
 }
Ejemplo n.º 2
0
 public ActionCommand(GraphicsPathCommandDelegate apply)
 {
     this.apply = apply;
 }
Ejemplo n.º 3
0
			public ActionCommand (GraphicsPathCommandDelegate apply)
			{
				this.apply = apply; 
			}
Ejemplo n.º 4
0
		void Add (GraphicsPathCommandDelegate apply, params PointF[] points)
		{
			commands.Add (new ActionCommand (apply) { Points = points });
		}
Ejemplo n.º 5
0
 void Add(GraphicsPathCommandDelegate apply)
 {
     commands.Add(new ActionCommand(apply));
 }