winform控件NumericUpDown小数位数跟随数据的处理
NumericUpDown这个数字控件,小数位数可以用DecimalPlaces这个属性来控制,但有时候数据小数位数不固定,就会造成显示的后面小数都是0,看起来很不舒服。
比如:你的数据要求最大支持的小数位数是4位,但真实数据不确定,如果你输入个5,因为设置了小数位数为4,那显示出来的就是5.0000,极度不舒适。
为了处理这问题,做了处理,记录下:
思路:在控件的值改变事件中,计算当前改变后值的小数位数,然后实时设置控件的小数位数
#region 控件-小数位数控制 private void Nud_ValueChanged(object sender, EventArgs e) { NumericUpDown numericUpDown = sender as NumericUpDown; int dotlength = GetNumberOfDecimalPlaces(numericUpDown.Value); numericUpDown.DecimalPlaces = dotlength; } /// <summary> /// 获取小数位数 /// </summary> /// <param name="decimalV">小数</param> /// <returns></returns> private int GetNumberOfDecimalPlaces(decimal decimalV) { string[] temp = decimalV.ToString().Split('.'); if (temp.Length == 2 && temp[1].Length > 0) { int index = temp[1].Length - 1; while (temp[1][index] == '0' && index-- > 0) ; return index + 1; } return 0; } #endregion