コード例 #1
0
ファイル: NumericCounterEditor.cs プロジェクト: stewmc/vixen
		public NumericCounterEditor(NumericCounter counter)
		{
			InitializeComponent();
			ForeColor = ThemeColorTable.ForeColor;
			BackColor = ThemeColorTable.BackgroundColor;
			ThemeUpdateControls.UpdateControls(this);
			_counter = counter;
			_oldStepValue = (int) numericUpDownStep.Value;
		}
コード例 #2
0
 public NumericCounterEditor(NumericCounter counter)
 {
     InitializeComponent();
     _counter = counter;
     _oldStepValue = (int)numericUpDownStep.Value;
 }