How to disable designer in derived classes in following generations

前端 未结 2 2064
时光说笑
时光说笑 2021-02-15 16:06

In order to disable component designer in classes it is simple to add just [System.ComponentModel.DesignerCategory(\"\")] attribute to it, however it does not work for any class

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-15 16:54

    "Attribute inheritance" at first struck me as odd, as I always thought that attributes weren't inherited; after checking docs.microsoft.com I discovered that that doesn't have to be the case - attributes may have Inherited = true, so thanks to you for helping me broaden my knowledge :-)

    Additionally, I also had to remove a bunch of Component entries from the .csproj file

提交回复
热议问题