如何获取numericupdown方框的数字
1个回答
2015-01-07 · 知道合伙人数码行家
huanglenzhi
知道合伙人数码行家
向TA提问 私信TA
知道合伙人数码行家
采纳数:117538
获赞数:517168
长期从事计算机组装,维护,网络组建及管理。对计算机硬件、操作系统安装、典型网络设备具有详细认知。
向TA提问 私信TA
关注
展开全部
//
// Summary:
// Gets or sets the text to be displayed in the System.Windows.Forms.NumericUpDown
// control.
[Bindable(false)]
[EditorBrowsable(1)]
[DesignerSerializationVisibility(0)]
[Browsable(false)]
public override string Text { get; set; }
大家注意倒数第二行有个[Browsable(false)],这代表其Text属性是不可浏览的,这就解释了为什么在代码中访问不了其Text属性,那就往其父类追踪,果然其父类的Text属性是可以访问的,代码如下:
//
// Summary:
// Gets or sets the text displayed in the spin box (also known as an up-down
// control).
//
// Returns:
// The string value displayed in the spin box.
[Localizable(true)]
public override string Text { get; set; }
既然这样,解决办法就有了,我们把代码中的numericUpDown1转化为其父类的一个对象,然后就可以根据其Text属性判断是否为空了,代码如下:
UpDownBase up = (UpDownBase)numericUpDown1;
if (up.Text == "")
{
MessageBox.Show("请你输入正确的数值!");
return;
}
用这句话来检查空值就屡试不爽了!感兴趣的可以试一下啊!
// Summary:
// Gets or sets the text to be displayed in the System.Windows.Forms.NumericUpDown
// control.
[Bindable(false)]
[EditorBrowsable(1)]
[DesignerSerializationVisibility(0)]
[Browsable(false)]
public override string Text { get; set; }
大家注意倒数第二行有个[Browsable(false)],这代表其Text属性是不可浏览的,这就解释了为什么在代码中访问不了其Text属性,那就往其父类追踪,果然其父类的Text属性是可以访问的,代码如下:
//
// Summary:
// Gets or sets the text displayed in the spin box (also known as an up-down
// control).
//
// Returns:
// The string value displayed in the spin box.
[Localizable(true)]
public override string Text { get; set; }
既然这样,解决办法就有了,我们把代码中的numericUpDown1转化为其父类的一个对象,然后就可以根据其Text属性判断是否为空了,代码如下:
UpDownBase up = (UpDownBase)numericUpDown1;
if (up.Text == "")
{
MessageBox.Show("请你输入正确的数值!");
return;
}
用这句话来检查空值就屡试不爽了!感兴趣的可以试一下啊!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询