为什么Intellisense不建议使用NumericUpDown的Text属性?

时间:2017-11-24 10:14:27

标签: c# controls numericupdown

我注意到all Controls have a Text property。但是,Intellisense不会为NumericUpDown个对象建议它。手动将其写下来时,它确实有效,并将NumericUpDown的值作为字符串返回。这是为什么?

1 个答案:

答案 0 :(得分:3)

docs显示属性定义为:

[BrowsableAttribute(false)]
[BindableAttribute(false)]
public override string Text { get; set; }

BrowsableAttribute(false)位(或更可能是EditorBrowsableAttribute)是来自Intellisense的“隐藏”。

为什么要隐藏它?

  

此API支持产品基础架构,但并非如此   直接从您的代码中使用。