wpf messagebox vs. winforms messagebox

时间:2012-12-07 20:18:38

标签: .net wpf winforms

使用

有什么好处
System.Windows.MessageBox.Show();

System.Windows.Forms.MessageBox.Show();

除了你不必引用WinForms程序集(我必须做任何一种方式),你可以更容易地设置父窗口(这没什么大不了的)?

1 个答案:

答案 0 :(得分:0)

System.Windows.MessageBox来自WPF,是程序集(PresentationFramework.dll)的一部分。

System.Windows.Forms.MessageBox来自,是程序集的一部分。

如果您的计划是,请使用System.Windows.Forms.MessageBox,否则请转到System.Windows.Messagebox(WPF)。

我很确定他们最终会使用相同的API调用。