Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何创建没有 GUI 或设计器附件的 WinForms 用户控件?一个例子就像 Timer Control,你把它放到你的表单上,它停靠在底部,但没有任何 GUI 控件?
你需要使用System.ComponentModel.Componentas base class。
System.ComponentModel.Component
base class
例子 :
class Class1 : System.ComponentModel.Component { }
创建一个继承自 System.Windows.Forms.Control 的类。这应该将图标从正常的“类”图标更改为解决方案资源管理器中的“组件”图标。如果创建一个类并从 TextBox 或 Timer 继承,您可以看到这种效果