NumericUpDown.Hexadecimal 屬性

定義

取得或設定值,指出微調方塊 (也稱為上下按鈕控制項) 是否應顯示包含在十六進位格式中的值。

public bool Hexadecimal { get; set; }

屬性值

如果微調方塊應在十六進位格式中顯示它的值則為 true,否則為 false。 預設為 false

範例

下列程式碼範例會建立和初始化 NumericUpDown 控制項、設定其一些通用屬性,並讓使用者在執行時間變更其中一些屬性。 此程式碼假設已將三 CheckBox 個控制項放在表單上,並已具現化其 Click 事件的處理常式。 、 DecimalPlacesThousandsSeparatorHexadecimal 屬性會在每個核取方塊的事件上 Click 設定。

public void InstantiateMyNumericUpDown()
{
   // Create and initialize a NumericUpDown control.
   numericUpDown1 = new NumericUpDown();

   // Dock the control to the top of the form.
   numericUpDown1.Dock = System.Windows.Forms.DockStyle.Top;

   // Set the Minimum, Maximum, and initial Value.
   numericUpDown1.Value = 5;
   numericUpDown1.Maximum = 2500;
   numericUpDown1.Minimum = -100;
   
   // Add the NumericUpDown to the Form.
   Controls.Add(numericUpDown1);
}

// Check box to toggle decimal places to be displayed.
private void checkBox1_Click(Object sender,
                             EventArgs e)
{
   /* If DecimalPlaces is greater than 0, set them to 0 and round the 
      current Value; otherwise, set DecimalPlaces to 2 and change the 
      Increment to 0.25. */
   if (numericUpDown1.DecimalPlaces > 0)
   {
      numericUpDown1.DecimalPlaces = 0;
      numericUpDown1.Value = Decimal.Round(numericUpDown1.Value, 0);
   }
   else
   {
      numericUpDown1.DecimalPlaces = 2;
      numericUpDown1.Increment = 0.25M;
   }
}

// Check box to toggle thousands separators to be displayed.
private void checkBox2_Click(Object sender,
                             EventArgs e)
{   
   /* If ThousandsSeparator is true, set it to false; 
      otherwise, set it to true. */
   if (numericUpDown1.ThousandsSeparator)
   {
      numericUpDown1.ThousandsSeparator = false;
   }
   else
   {
      numericUpDown1.ThousandsSeparator = true;
   }
}

// Check box to toggle hexadecimal to be displayed.
private void checkBox3_Click(Object sender, 
                             EventArgs e)
{
   /* If Hexadecimal is true, set it to false; 
      otherwise, set it to true. */    
   if (numericUpDown1.Hexadecimal)
   {
      numericUpDown1.Hexadecimal = false;
   }
   else
   {
      numericUpDown1.Hexadecimal = true;
   }
}

備註

Hexadecimal設定 屬性時, UpdateEditText 會呼叫 方法來將微調方塊的顯示更新為新的格式。

Hexadecimal當 屬性設定為 true 時, Maximum 屬性應該設定為 Int32.MaxValue ,而 Minimum 屬性應該設定為 Int32.MinValue

適用於

產品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

另請參閱