コード例 #1
0
 public void AddControl(CPBNumber newControl)
 {
     int len = Controls.Count;
     Size ScrollOffset = new Size(this.AutoScrollPosition);
     this.Controls.Add(newControl);
     this.Controls[len].Location = new Point(190, 1 + len * 20 + ScrollOffset.Height);
     this.Controls[len].Show();
 }
コード例 #2
0
 public CommanTableItem(String newName, String newNumber)
 {
     CommandName = newName;
     CompactNumber = new CPBNumber(newNumber);
 }