HOW TO:使用 Windows Form NumericUpDown 控制項設定和傳回數值
更新:2007 年 11 月
Windows Form NumericUpDown 控制項的數值,是由它的 Value 屬性決定。如同其他屬性一般,您可以為這個控制項的值撰寫條件式測試。設定 Value 屬性後,您可以撰寫程式碼對它執行作業來直接調整其值,也可以呼叫 UpButton 和 DownButton 方法進行調整。
若要設定數值
在程式碼或 [屬性] 視窗中,將值指派給 Value 屬性。
NumericUpDown1.Value = 55
numericUpDown1.Value = 55;
numericUpDown1.set_Value(new Decimal(55));
numericUpDown1->Value = 55;
-或-
呼叫 UpButton 或 DownButton 方法,依 Increment 屬性指定的數量增加或減少值。
NumericUpDown1.UpButton()
numericUpDown1.UpButton();
numericUpDown1.UpButton();
numericUpDown1->UpButton();
若要傳回數值
在程式碼中存取 Value 屬性。
If NumericUpDown1.Value >= 65 Then MessageBox.Show("Age is: " & NumericUpDown1.Value.ToString) Else MessageBox.Show("The customer is ineligible for a senior citizen discount.") End If
if(numericUpDown1.Value >= 65) { MessageBox.Show("Age is: " + numericUpDown1.Value.ToString()); } else { MessageBox.Show("The customer is ineligible for a senior citizen discount."); }
if (Decimal.Compare(numericUpDown1.get_Value(), new Decimal(65)) >= 0) { MessageBox.Show(("Age is: " + numericUpDown1.get_Value().ToString())); } else { MessageBox.Show("The customer is ineligible for a senior citizen discount."); }
if(numericUpDown1->Value >= 65) { MessageBox::Show(String::Concat("Age is: ", numericUpDown1->Value.ToString())); } else { MessageBox::Show ("The customer is ineligible for a senior citizen discount."); }
請參閱
參考
NumericUpDown 控制項概觀 (Windows Form)