如何在winform的numericUpDown中显示小数点

2024-12-02 03:29:24
推荐回答(1个)
回答1:

DecimalPlaces 属性确定在小数点后显示几位数,例如
小数点设为两位,增幅为0.25



numericUpDown1.DecimalPlaces = 2;
numericUpDown1.Increment = 0.25M;