Inheritance: IUpdatable
Exemple #1
0
 public ImageView(DrawingImage image, Pad pad)
 {
     this.image = image;
     Pad = pad;
     ToolTipEnabled = true;
     ToolTipFormat = "{0} {1} {2} - {3:F6}";
 }
Exemple #2
0
 public void DrawImage(DrawingImage image, int padNumber)
 {
     lock (this.lockObject)
     {
         if (!this.volumePadShown && padNumber > 1)
             --padNumber;
         ImageView local_0 = new ImageView(image, this.pads[padNumber]);
         image.Updated += new EventHandler(this.OnPrimitiveUpdated);
         this.pads[padNumber].AddPrimitive((IChartDrawable)local_0);
         local_0.SetInterval(this.leftDateTime, this.rightDateTime);
         this.contentUpdated = true;
     }
 }
Exemple #3
0
 public void DrawImage(SmartQuant.FinChart.Objects.DrawingImage image, int padNumber)
 {
     throw new NotImplementedException();
 }