WPF消息框显示错误消息

xn1cxnb4  于 2023-01-14  发布在  其他
关注(0)|答案(2)|浏览(286)

我正在开发一个WPF应用程序,我想显示带有信息或问题符号的消息框。我编写了以下代码:

MessageBox.Show("Added Sucessfully","Alert",MessageBoxImage.Information);

但它显示了error/red line
错误:system.windows.messagebox.show(字符串,字符串,messageboximage)包含一些无效参数

ctehm74n

ctehm74n1#

您遗漏了MessageBoxButton参数。请尝试以下操作:

MessageBox.Show("Added successfully", "Alert", MessageBoxButton.OK, MessageBoxImage.Information);

确保您使用的是System.Windows命名空间中的MessageBox,而不是System.Windows.Forms

svdrlsy4

svdrlsy42#

您可以从消息框中取回结果,并检查您的条件:

MessageBoxResult result = MessageBox.Show("Added successfully", "Alert", MessageBoxButton.OK, MessageBoxImage.Information);
            if (result == MessageBoxResult.OK)
            {

            }

相关问题