关闭时显示消息框

关闭时显示消息框

本文介绍了关闭时显示消息框.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我单击关闭选项时,我想显示一个带有是/否"选项的消息框.应该在Windows Service的帮助下显示.

您能否为上述问题提供帮助,直接指导或提供源代码?

While I click on the turn off option, I would like show a message box with Yes/No Option. It should be shown with the help of Windows Service.

Could u pls, direct or give source code for the above problem?

推荐答案

DialogResult result = MessageBox.Show("Do you really want to shut down?",MessageBoxButtons.YesNoCancel,MessageBoxIcon.Question,MessageBoxDefaultButton.Button2);

if (result == DialogResult.Yes)
{
// Code for shutdown
}



这篇关于关闭时显示消息框.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 19:47