标签: .net wpf winforms
使用
System.Windows.MessageBox.Show();
在
System.Windows.Forms.MessageBox.Show();
除了你不必引用WinForms程序集(我必须做任何一种方式),你可以更容易地设置父窗口(这没什么大不了的)?
答案 0 :(得分:0)
System.Windows.MessageBox来自WPF,是wpf程序集(PresentationFramework.dll)的一部分。
System.Windows.MessageBox
PresentationFramework.dll
System.Windows.Forms.MessageBox来自winforms,是winforms程序集的一部分。
System.Windows.Forms.MessageBox
如果您的计划是winforms,请使用System.Windows.Forms.MessageBox,否则请转到System.Windows.Messagebox(WPF)。
System.Windows.Messagebox
我很确定他们最终会使用相同的API调用。