コード例 #1
0
 /// <summary>
 /// This should be accessible only to TelemetryControl.
 /// </summary>
 public PanelCollection(TelemetryControl owner)
 {
     collection = new List <Panel>();
     this.owner = owner;
 }
コード例 #2
0
 public PanelToolStripItem(TelemetryControl owner, Panel panel = null)
 {
     this.owner  = owner;
     this.Click += OnClicked;
     this.Panel  = panel;
 }