Is there a MessageBox equivalent in WPF?

前端 未结 9 952
耶瑟儿~
耶瑟儿~ 2020-11-29 17:49

Is there a standard message box in WPF, like WinForms\' System.Windows.Forms.MessageBox.Show(), or should I use the WinForms message box?

9条回答
  •  抹茶落季
    2020-11-29 18:20

    In WPF it seems this code,

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

    is replaced with:

    System.Windows.MessageBox.Show("Test");
    

提交回复
热议问题