Add customized buttons to the existing MessageBox

后端 未结 1 1977
挽巷
挽巷 2020-12-11 21:02

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 e

相关标签:
1条回答
  • 2020-12-11 21:24

    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.

    0 讨论(0)
提交回复
热议问题