Beispiel #1
0
        public RenderArgs(RenderMode mode, Graphics graphics, MindMapView view, Font font)
            : this()
        {
            Mode     = mode;
            Graphics = new GdiGraphics(graphics);
            View     = view;
            Font     = new GdiFont(font);

            if (view != null)
            {
                Chart = view.Map;
            }
        }
Beispiel #2
0
 public LinesLayer(MindMapView chart)
     : base(chart)
 {
     View = chart;
 }
Beispiel #3
0
 public MindMapViewDragBox(MindMapView view)
 {
     OwnerView = view;
 }