public ImageView(DrawingImage image, Pad pad) { this.image = image; Pad = pad; ToolTipEnabled = true; ToolTipFormat = "{0} {1} {2} - {3:F6}"; }
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; } }
public void DrawImage(SmartQuant.FinChart.Objects.DrawingImage image, int padNumber) { throw new NotImplementedException(); }