使自定义控件的属性输入类似于多行文本框的属性输入

发布于 2024-10-01 03:50:22 字数 137 浏览 5 评论 0原文

假设我有属性“Address”,如何使其像文本框的文本输入一样在表单设计器的属性框中输入,如下所示:

文本框输入图像。

?

Say I have attribute "Address", how can I make it's input in the form designer's property box like that of a text box's text input, like so:

Textbox input image.

?

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

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

发布评论

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

评论(2

千年*琉璃梦 2024-10-08 03:50:22

使用引用 EditorAttribute 来装饰您的 Address 属性MultilineStringEditor 类:

using System.ComponentModel;
using System.Drawing.Design;

[Editor("System.ComponentModel.Design.MultilineStringEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
    typeof(UITypeEditor))]
public string Address
{
    get;
    set;
}

Decorate your Address property with an EditorAttribute referencing the MultilineStringEditor class:

using System.ComponentModel;
using System.Drawing.Design;

[Editor("System.ComponentModel.Design.MultilineStringEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a",
    typeof(UITypeEditor))]
public string Address
{
    get;
    set;
}
我还不会笑 2024-10-08 03:50:22

这是通过“设计师”发生的。对于 System.Windows.Forms.TextBox,该设计器是:

[Designer("System.Windows.Forms.Design.TextBoxDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"), SRDescription("DescriptionTextBox"), ComVisible(true), ClassInterface(ClassInterfaceType.AutoDispatch)]

如果要查看其源代码,请打开 .NET Reflector、Open Cache...System.Design,导航(或搜索)到 <代码>System.Windows.Forms.Design.TextBoxDesigner。

更新:自 2014 年起,.NET Core 开始开源,请查看官方存储库站点

This happens through a "designer". For System.Windows.Forms.TextBox that designer is:

[Designer("System.Windows.Forms.Design.TextBoxDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"), SRDescription("DescriptionTextBox"), ComVisible(true), ClassInterface(ClassInterfaceType.AutoDispatch)]

If you want to view its source code, open up .NET Reflector, Open Cache... System.Design, navigate (or search) to System.Windows.Forms.Design.TextBoxDesigner.

UPDATE: Since 2014, the .NET Core is open-source, check out the official repository site

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文