表单关闭事件在Windows应用程序中不起作用

表单关闭事件在Windows应用程序中不起作用

本文介绍了表单关闭事件在Windows应用程序中不起作用。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 当我关闭应用程序时,我想要在关闭表单之前弹出一个确认框。 我已经为它编写了代码,但是它无效。 Thanx提前。 这是关闭表单的代码: private void frmMain_FormClosing( object sender,FormClosingEventArgs e) { if (MessageBox.Show( 是否要保存对文本的更改?, 我的应用程序, MessageBoxButtons.YesNo)== DialogResult.Yes) { e.Cancel = true ; } objS3Instance = null ; Environment.Exit( 0 ); } 解决方案 When i close the application,i want a confirmation box to popup before closing the form.I have written the code for it but its not working.Thanx in advance.Here is my code for closing of the form:private void frmMain_FormClosing(object sender, FormClosingEventArgs e) { if (MessageBox.Show("Do you want to save changes to your text?", "My Application", MessageBoxButtons.YesNo) == DialogResult.Yes) { e.Cancel = true; } objS3Instance = null; Environment.Exit(0); } 解决方案 这篇关于表单关闭事件在Windows应用程序中不起作用。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-13 02:48