此例程广泛用于向最终用户提示是/否确认:
var result = DXMessageBox.Show(Application.Current.MainWindow,
"Whatever",
"Attention",
MessageBoxButton.OKCancel, ////////////// here
MessageBoxImage.Question);
if (result == MessageBoxResult.OK) // then instead of this, it shall check some customized settings
{
// confirmed for Orange for example
}
else
{
// confirmed for Elephant for example
}
我不想YesNo
,OKCancel
或者其他人。如何自定义按钮?我希望用户能够执行类似于“用户按下按钮,应用程序提示两个选择,用户选择一个”的操作。但是我想将指定的选项、文本和大小与 MessageBox 的简单性结合起来?
PS DVMessageBox
和System.Windows.MessageBox
这里几乎相似。