コード例 #1
0
 //Constructor
 public RCPTrackbar(Parameter parameter)
 {
     this.Parameter = parameter;
     this.SuspendLayout();
     PanelSet();
     TrackBarSet();
     NumericUpDownSet();
     LabelSet();
     MinMaxSet();
     this.Controls.Add(this.label1);
     this.Controls.Add(this.numericUpDown1);
     this.Controls.Add(this.trackBar1);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #2
0
 //Constructor
 public RCPNumericUpDown(Parameter parameter)
 {
     this.Parameter = parameter;
     this.SuspendLayout();
     PanelSet();
     NumericUpDownSet();
     LabelSet();
     this.Controls.Add(this.label1);
     this.Controls.Add(this.numericUpDown1);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #3
0
 //Constructor
 public RCPTextBox(Parameter parameter)
 {
     this.Parameter = parameter;
     this.SuspendLayout();
     PanelSet();
     TextBoxSet();
     LabelSet();
     MinMaxSet();
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textBox1);
     this.ResumeLayout(false);
     this.PerformLayout();
 }