您的位置首页百科知识

c# 怎样使用messagebox 显示是、否 按钮,然后选择的按钮的事件在哪写代码?

c# 怎样使用messagebox 显示是、否 按钮,然后选择的按钮的事件在哪写代码?

的有关信息介绍如下:

c# 怎样使用messagebox 显示是、否 按钮,然后选择的按钮的事件在哪写代码?

DialogResult dr= MessageBox.Show("内容?","对话框标题", MessageBoxButtons.OKCancel, MessageBoxIcon.Question); if (dr == DialogResult.OK) { //点确定的代码 } else { //点取消的代码 }