Visual Studio 用户控件设计

发布于 2024-12-01 16:59:58 字数 102 浏览 5 评论 0原文

如果您有一个带有类似 public int number = 10; 字段的用户控件,当您在 VS 2010 和 C# 中使用设计器时,您能否使该值出现在属性框中?

If you have a user control with a field like public int number = 10; can you make that value come up in the properties box when you use the designer in VS 2010 and C#?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烈酒灼喉 2024-12-08 16:59:58

您必须将变量转换为属性。尝试添加 Get Set,有时您必须添加适当的属性(引用 System.ComponentModel 类)

private int _Number = 10;

[DefaultValue(10)]
[Description("This is a number.")]
public int Number
{
  get { return _Number; }
  set { _Number = value; }
}

注意:DefaultValue 属性用于将设计器设置为粗体或非粗体。它实际上并没有设置默认值。

You have to turn your variable into a property. Try adding Get Set and sometimes you have to add the proper attributes (referencing the System.ComponentModel class)

private int _Number = 10;

[DefaultValue(10)]
[Description("This is a number.")]
public int Number
{
  get { return _Number; }
  set { _Number = value; }
}

Note: The DefaultValue attribute is for setting the designer to bold or not. It doesn't actually set the default value.

小矜持 2024-12-08 16:59:58

使用 System.ComponentModel;

[Browsable(true)]
public bool SampleProperty { get; set; }

如果您想要某个类别下的属性

[Category("My Properties")] 
public string MyCustomProperty{ get; set; }

using System.ComponentModel;

[Browsable(true)]
public bool SampleProperty { get; set; }

and if you want the property under a category

[Category("My Properties")] 
public string MyCustomProperty{ get; set; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文