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); }); }
public GraphicObject(Image defaultView, Point location, ObjectContent content, ObjectType type) : base(new Size(), location, content, type) { View = defaultView; }