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.
我在 VB.NET 解决方案中创建的表单上添加了一个 SerialPort 对象。我如何将“WithEvents”添加到它,因为我将它拖到表单上而不是在代码中创建它。甚至有必要这样做吗?
将其拖到表单上会自动将其添加到设计器生成的代码中WithEvents- 它必须这样做,否则您将无法在“事件”窗格中连接事件。如果您在解决方案资源管理器中点击“查看所有文件”切换,您应该能够看到设计器文件。看看那里,您会发现 IDE 添加此代码的位置。
WithEvents