Inheritance: IUpdatable
Beispiel #1
0
 public EllipseView(DrawingEllipse rect, Pad pad)
 {
     this.rect = rect;
     Pad = pad;
     ToolTipEnabled = true;
     ToolTipFormat = "{0} {1} {2} - {3:F6}";
 }
Beispiel #2
0
 public EllipseView(DrawingEllipse rect, Pad pad)
 {
     this.rect      = rect;
     Pad            = pad;
     ToolTipEnabled = true;
     ToolTipFormat  = "{0} {1} {2} - {3:F6}";
 }
Beispiel #3
0
 public void DrawEllipse(DrawingEllipse circle, int padNumber)
 {
     lock (this.lockObject)
     {
         if (!this.volumePadShown && padNumber > 1)
             --padNumber;
         var view = new EllipseView(circle, this.pads[padNumber]);
         circle.Updated += new EventHandler(this.OnPrimitiveUpdated);
         this.pads[padNumber].AddPrimitive(view);
         view.SetInterval(this.leftDateTime, this.rightDateTime);
         this.contentUpdated = true;
     }
 }
Beispiel #4
0
 public void DrawEllipse(DrawingEllipse circle, int padNumber)
 {
     throw new NotImplementedException();
 }