Ejemplo n.º 1
0
 public GraphicObject(Size plataformSize, Point location, ObjectContent content, ObjectType type) : base(plataformSize, location, content, type)
 {
     isVisible = true;
     Drawing  += new DrawingHandler((object sender, DrawingEventArgs args) =>
     {
     });
     FinishDrawing += new FinishedDrawingHandler((object sender, FinishedDrawingArgs args) =>
     {
         return(args.OutPut);
     });
 }
Ejemplo n.º 2
0
 public GraphicObject(Image defaultView, Point location, ObjectContent content, ObjectType type) : base(new Size(), location, content, type)
 {
     View = defaultView;
 }