我正在尝试使用System.ComponentModel.DesignerCategory
属性来防止扩展的标签页组件在设计器中自动打开。关于其他 StackOverflow 问题1、2、3的建议似乎不起作用。
这是组件上的代码
<System.ComponentModel.DesignerCategory("Code")>
Public Class ExtendedTabPage : Inherits Windows.Forms.TabPage
这是我的 .vbproj 文件中的代码
<Compile Include="ExtendedTabPage.vb">
<SubType>Component</SubType>
</Compile>
我尝试使用 and 初始化 DesignerCategory 属性""
,"Code"
进行重建并重新打开解决方案,但我仍然通过双击组件获得下面的屏幕。我必须删除项目子类型吗?这会影响代码的编译方式吗?