发布网友 发布时间:2022-05-01 04:22
共1个回答
热心网友 时间:2022-06-24 09:32
下面是这个函数的原型:
[System.Security.SecurityCritical]
public static System.Windows.MessageBoxResult Show (string messageBoxText, string caption, System.Windows.MessageBoxButton button, System.Windows.MessageBoxImage icon);
可以看到,函数的返回类型是System.Windows.MessageBoxResult类型,而不是DialogResult类型,给出一个官方文档供你参考:文档
可以这么写:
if(MessageBox.Show("内容?","对话框标题", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) ==MessageBoxResult.OK)
{
// 点击确定后执行的代码
}
else
{
// 取消后的代码
}