生成表单_在 Visual Studio 中关闭 C Sharp
我们只需在设计视图中双击表单,就可以在 Visual Studio 中为 c Sharp 生成 form_Load() 。是否也有相同的过程来生成 form_Closing() ?
We can generate form_Load() for c sharp in visual studio by just double clicking the form in design view. Is there a same kind of procedure to generate form_Closing() too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在您选择的对象的属性下(通常是右下角),您会看到一个闪电。单击它,您将看到该对象可用的所有事件。双击其中一个事件,瞧!
Under the properties for the object you have selected (usually bottom right side), you'll see a lightning bolt. Click it, and you'll see all the events that are available for that object. Double click by one of the events and voila!
转到表单属性 F4,滚动到关闭事件,双击它或输入所需的事件处理程序的名称。将为您生成事件处理程序。
Go the the form properties F4, scroll to the close event, double click it or type in the name of the event handler that you want. The event handler will be generated for you.
您可以在表单的构造函数中执行相同的操作
You can do the same in the constructor of the form