WPF MessageBox Default To Cancel

淺唱寂寞╮ 提交于 2019-12-30 06:04:04

问题


With this the default is OK. Can I make the default Cancel?

   MessageBoxResult result = MessageBox.Show
      (message, caption, MessageBoxButton.OKCancel);

回答1:


Use this overload, which allows you to specify the default MessageBoxResult:

MessageBoxResult result = MessageBox.Show
    (message, caption, MessageBoxButton.OKCancel,  
        MessageBoxImage.Information, MessageBoxResult.Cancel);


来源:https://stackoverflow.com/questions/7179900/wpf-messagebox-default-to-cancel

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!