如何获取numericupdown方框的数字
答案:2 悬赏:40 手机版
解决时间 2021-03-05 15:29
- 提问者网友:流星是天使的眼泪
- 2021-03-04 19:32
如何获取numericupdown方框的数字
最佳答案
- 五星知识达人网友:鱼忧
- 2021-03-04 19:49
//
// 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;
}
用这句话来检查空值就屡试不爽了!感兴趣的可以试一下啊!
全部回答
- 1楼网友:西岸风
- 2021-03-04 20:09
呵呵
我没有找到你说的这个控件
倒是 用updown试了试!
可以 让一个控件 成为 updown 控件的 buddy 控件!
很有意思的!
祝你顺利
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯