如何在下一代中禁用派生类中的设计器

本文关键字:派生 下一代 | 更新日期: 2023-09-27 18:21:09

为了在类中禁用组件设计器,只需向其添加[System.ComponentModel.DesignerCategory(")]属性即可,但它在任何生成中都不适用于从此类派生的任何类。例如:

[System.ComponentModel.DesignerCategory("")]
public class A:ServiceBase { } //Designer is disabled here
public class B:A {} //Designer is enabled here
[System.ComponentModel.DesignerCategory("")]
public class B:A {} //Designer is enabled here too
[System.ComponentModel.DesignerCategory("Code")]
public class B:A {} //Designer is enabled even here

当然,这种情况发生在任何其他世代和排列中。例如

//Whatever attribute here
public class C:B {} //Designer is enabled here

有人试图摆脱它吗?为什么组件模型试图添加设计器支持,即使它在第一代中被明确禁用?

感谢

如何在下一代中禁用派生类中的设计器

这种行为的原因是缓存引用的程序集。若要解决此问题,请删除对包含具有属性的基本服务器的程序集的引用,然后重新添加。在这种情况下,VisualStudio重新生成项目,并且不会将默认编辑器定义为派生类。

"属性继承"一开始让我觉得很奇怪,因为我一直认为属性不是继承的;在查看learn.microsoft.com后,我发现情况并非如此-属性可能具有Inherited = true,因此感谢您帮助我拓宽知识面:-)

此外,我还必须从.csproj文件

中删除一堆<SubType>Component</SubType>条目