System.Windows.MessageBox vs System.Windows.Forms.MessageBox

前端 未结 4 868
北海茫月
北海茫月 2021-01-03 22:22

I am having trouble finding out what the key differences are between the two message boxes. What is the difference between System.Windows.MessageBox and S

4条回答
  •  攒了一身酷
    2021-01-03 23:05

    The both basically do the same thing, except system.windows.messagebox is WPF and system.windows.forms.messagebox is Windows Forms. If you're using WPF use the former, for WinForms use the latter.

提交回复
热议问题