猿问

无法将 system.windows.forms.messageboxbuttons 转换为

我无法在我的 C# wpf 项目上发送消息,我已经导入了所有组件,但现在收到此错误


MessageBoxButtons 出现错误“无法将 system.windows.forms.messageboxbuttons 转换为 system.windows.messageboxbuttons”


using System.Windows;

using System;

using System.Windows.Controls;

using System.Drawing;

using System.Drawing.Imaging;

using System.Security;

using MessageBox = System.Windows.MessageBox;

using System.Text.RegularExpressions;

using System.IO;

using System.Collections.Generic;

using System.Windows.Forms;




      if (MessageBox.Show("test", "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)

                    {

                        // user clicked yes

                    }

                    else

                    {

                        // user clicked no

                    }


慕盖茨4494581
浏览 208回答 1
1回答

SMILET

你混合了 WPF/Winforms为按钮/图像使用正确的名称空间:if (MessageBox.Show("test", "Confirm", System.Windows.MessageBoxButton.YesNo, System.Windows.MessageBoxImage.Question) == MessageBoxResult.Yes){    // user clicked yes}else{    // user clicked no}
随时随地看视频慕课网APP
我要回答