Add customized buttons to the existing MessageBox

ⅰ亾dé卋堺 提交于 2019-12-17 20:52:53

问题


How can I add custom buttons to the existing MessageBox in WPF? Apart from the usual Ok and Cancel buttons, I need to add 3 more buttons and also handle their events.


回答1:


Short answer: No it is not possible, you need to write a new window.

Long answer: the MessageBox class uses the Win32 MessageBox (or maybe MessageBoxEx) function, this function does not support extending the message box.

It is possible to modify the message box after it is opened, but:

  1. It is a lot of work

  2. It isn't supported

  3. you have to do it using Win32 directly, the message box window is not WPF or even WinForms.

All in all, it's less work to write a window with one TextBlock, one Image and 5 buttons than to mess around with internal implementation details of the MessageBox code.



来源:https://stackoverflow.com/questions/1063005/add-customized-buttons-to-the-existing-messagebox

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!