コード例 #1
0
 public StandardDrawingView (IDrawingEditor editor): base () {
     Drawing = new StandardDrawing ();
     Editor = editor;
     Scale = 1.0;
     _selection = new FigureCollection ();
             
     DebugCreateTimer ();
 }
コード例 #2
0
        public StandardDrawingView(IDrawingEditor editor) : base()
        {
            Drawing    = new StandardDrawing();
            Editor     = editor;
            Scale      = 1.0;
            _selection = new FigureCollection();

            DebugCreateTimer();
        }
コード例 #3
0
        public StandardDrawingView(IDrawingEditor editor)
            : base()
        {
            Editor = editor;
            Drawing = new StandardDrawing ();
            ScaleRange = new ScaleRange (5, 0.25, 0.1);
            Scale = 0.75;

            selection = new FigureCollection ();
            DebugCreateTimer ();
        }