生成表单_在 Visual Studio 中关闭 C Sharp

发布于 2024-11-03 05:29:55 字数 97 浏览 0 评论 0原文

我们只需在设计视图中双击表单,就可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

独闯女儿国 2024-11-10 05:29:55

在您选择的对象的属性下(通常是右下角),您会看到一个闪电。单击它,您将看到该对象可用的所有事件。双击其中一个事件,瞧!

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!

老娘不死你永远是小三 2024-11-10 05:29:55

转到表单属性 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.

双手揣兜 2024-11-10 05:29:55

您可以在表单的构造函数中执行相同的操作

this.FormClosing += new FormClosingEventHandler(Form2_FormClosing);
//after += two tabs and you have your event

You can do the same in the constructor of the form

this.FormClosing += new FormClosingEventHandler(Form2_FormClosing);
//after += two tabs and you have your event
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文