VisualStudio 设计器自动将GenerateMember 属性设置为 false

发布于 2024-11-17 11:39:25 字数 105 浏览 1 评论 0原文

一切都在标题中:)

我希望 VisualStudio 设计器自动将每个控件的GenerateMember 属性设置为 false。需要时我会手动将其设置为 true。 这可能吗?

Everthing's in the title :)

I'd like VisualStudio designer to automatically set GenerateMember property to false for each Control. I would manually set it to true when needed.
Is that possible?

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

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

发布评论

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

评论(1

从﹋此江山别 2024-11-24 11:39:25

您可以通过继承要使用的每个类来编写自己的控件。在构造函数中,您可以将该属性设置为 false。要将它们放入 VS 的工具箱中,您可以右键单击工具箱并添加每个类。您必须对要使用的每个控件执行此操作。乏味,但这是我能想到的实现你想要的目标的唯一方法。

public MyDropDownList : DropDownList
{
    public MyDropDownList() : base()
    {
        GenerateMember = false;
    }
}

You can write your own controls by inheriting each class you want to use. In the constructor, you would set that property to false. To get them into VS's toolbox, you can right click on the toolbox and add each of your classes. You'd have to do this for each control you want to use. Tedious, but it's the only way I can think of to accomplish what you want.

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