我想创建一个UserControl
,其行为类似于Timer
或FileSystemWatcher
。这意味着它没有可视组件,没有Panel
等。
但是,当我使用Visual Studio 2013 **for Windows Desktop**
创建UserControl
时,它会从一个面板开始,让我添加内容。
我在Component
菜单中看不到Add item
对象:
答案 0 :(得分:0)
这就是你的文件应该是这样的(在Visual Studio中,只说“添加新类”):
Public Class MyComponent
Inherits Component
Public Property MyProperty As Boolean
Public Property MySecondProperty As Boolean
Public Function MyMethod() As Boolean
Return True
End Function
End Class
如果您编译项目,那么您可能会在设计器中看到MyComponent