1

我发现这个自定义类允许NumericUpDown接收可为空的值。我在编辑表单中使用它,该表单可以为空,也可以填充来自需要可空值的数据库中的数据。

这是当前代码:

public partial class NullableNumericUpDown : NumericUpDown
    {
        public NullableNumericUpDown()
        {
            InitializeComponent();
        }

        public NullableNumericUpDown(IContainer container)
        {
            container.Add(this);

            InitializeComponent();
        }



        private int? _value;

        [Bindable(true)]
        public new int? Value
        {
            get
            {
                return _value;
            }
            set
            {
                _value = value;
                if (value != null)
                {
                    base.Value = (int)value;
                    Text = Value.ToString();
                }
                else
                {
                    Text = "";
                }
            }
        }

        private void NullableNumericUpDown_ValueChanged(object sender, EventArgs e)
        {
            _value = (int)base.Value;
        }



        void NullableNumericUpDown_TextChanged(object sender, System.EventArgs e)
        {
            if (Text == "")
            {
                _value = null;
            }
        }
    }

我对 C# 还很陌生,所以我不能说我完全理解代码,但是我遇到的问题是当我用数据库中的数据填充表单时,并且确切地说,当它NullableNumericUpDown具有一些价值时,比如说 - 3。当我改变这个值5时,我从表单中的字段中收集数据时的最终结果是53。此外,如果我删除3然后点击递增箭头,我会得到4. 似乎初始数据在这个控件的整个生命周期中都保存了,我试图0在一些当前的地方设置我认为它可能会有所帮助,但它不会而且除了我需要摆脱这个初始的事实value 如果控件的值发生了变化,实际上仅仅做到这一点是不够的0因为如果我有空控件,这必须没问题并将其记录null0

在这里要完整的是我如何为NullableNumericUpDown控件设置数据:

numUpDnAreas.Value = entity.AreasCnt;

这发生在我的form_load活动中。当我点击Save按钮时,我用这个收集数据:

entity.AreasCnt = numUpDnAreas.Value;

是否可以重构此代码以满足我的需求,或者我应该保留它并只使用类似MaskedTextBox或其他的东西?

4

2 回答 2

1

您能否尝试使用扩展 WPF 工具包中的 UpDown 控件。http://wpftoolkit.codeplex.com/wikipage?title=DecimalUpDown&referringTitle=Home 它可以解决您的问题并且是开源的。

我们在项目中有类似的需求,最终通过创建一个包含文本框的自定义控件并设置 Binding 来编写自己的需求。AllowNullValue 到 string.empty

于 2013-03-14T10:41:37.083 回答
0

有工作示例:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace NumericUpDownNullableProj
{
    /// <summary>
    /// Represents a Windows spin box (also known as an up-down control) that displays numeric values.
    /// </summary>
    [ClassInterface(ClassInterfaceType.AutoDispatch)]
    [ComVisible(true)]
    [DefaultBindingProperty("Value")]
    [DefaultEvent("ValueChanged")]
    [DefaultProperty("Value")]
    //[SRDescriptionAttribute("DescriptionNumericUpDown")]
    public class NumericUpDownNullable : NumericUpDown
    {
        public NumericUpDownNullable() : base()
        {
            Text = "";

            ValueChanged += NumericUpDownNullable_ValueChanged;
            TextChanged += NumericUpDownNullable_TextChanged;
        }

        public NumericUpDownNullable(IContainer container) : this()
        {
            container.Add(this);
        }

        private void NumericUpDownNullable_TextChanged(object sender, EventArgs e)
        {
            if (Text == "")
            {
                Value = null;
            }
        }

        private void NumericUpDownNullable_ValueChanged(object sender, EventArgs e)
        {
            if (Value != base.Value)
            {
                Value = base.Value;
            }
        }

        private decimal? _value;
        /// <summary>
        /// Gets or sets the value assigned to the spin box (also known as an up-down control).
        /// 
        /// Returns:
        ///      The numeric value of the System.Windows.Forms.NumericUpDown control.
        /// Exceptions:
        ///    T:System.ArgumentOutOfRangeException:
        ///       The assigned value is less than the System.Windows.Forms.NumericUpDown.Minimum
        ///       property value.-or- The assigned value is greater than the System.Windows.Forms.NumericUpDown.Maximum property value.
        /// </summary>
        [Bindable(true)]
        public new decimal? Value
        {
            get
            {
                return _value;
            }
            set
            {
                _value = value;

                if (base.Value != value.GetValueOrDefault())
                {
                    base.Value = value.GetValueOrDefault();
                }

                Text = value?.ToString();
            }
        }
    }
}
于 2018-07-10T23:45:28.960 回答