如何设置 Windows 窗体 NumericUpDown 控件的格式

可以配置如何在 Windows 窗体 NumericUpDown 控件中显示值。 DecimalPlaces 属性确定小数点后显示的数字数;默认值为 0。 ThousandsSeparator 属性确定是否在每三位十进制数字之间插入分隔符;默认值为 false。 如果 Hexadecimal 属性设置为 true,则控件可以显示十六进制而不是十六进制格式的值;默认值为 false

设置数值的格式

  • 通过将 DecimalPlaces 属性设置为整数并将 ThousandsSeparator 属性设置为 truefalse来显示十进制值。

    NumericUpDown1.DecimalPlaces = 2  
    NumericUpDown1.ThousandsSeparator = True  
    
    numericUpDown1.DecimalPlaces = 2;  
    numericUpDown1.ThousandsSeparator = true;  
    
    numericUpDown1->DecimalPlaces = 2;  
    numericUpDown1->ThousandsSeparator = true;  
    

    -或-

  • 通过将 Hexadecimal 属性设置为 true来显示十六进制值。

    NumericUpDown1.Hexadecimal = True  
    
    numericUpDown1.Hexadecimal = true;  
    
    numericUpDown1->Hexadecimal = true;  
    

    注意

    即使该值以十六进制形式显示在窗体上,对 Value 属性执行的任何测试也会测试其十进制值。

另请参阅