我正在尝试将一些字段添加到UserControl
我正在制作的自定义中。我有一些字段,我希望它们Properties
在Visual Studio
. 我尝试使用下面的标志,但我在设计器中看不到该字段,即使在编译之后也是如此。
我应该如何正确地做到这一点?
public partial class TosChartControl: UserControl
{
#region PUBLIC FIELDS
[Browsable(true)] //Added this but still does not show up
[Category("Data")]
[DefaultValue(0)]
[Description("ID of the Sensor Node")]
public int NodeId { get; set; }
#endregion
public TosChartControl()
{
InitializeComponent();
}
}
我确实清理并重建了解决方案和项目,但我仍然无法在“属性”窗口中看到该字段。即使重新启动 Visualstudio 也无济于事。