VisualStudio 设计器自动将GenerateMember 属性设置为 false
一切都在标题中:)
我希望 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过继承要使用的每个类来编写自己的控件。在构造函数中,您可以将该属性设置为 false。要将它们放入 VS 的工具箱中,您可以右键单击工具箱并添加每个类。您必须对要使用的每个控件执行此操作。乏味,但这是我能想到的实现你想要的目标的唯一方法。
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.