WPF MessageBox Layout

4

How can I customize my MessageBox? Original ..

HowIwishIwas(Major)

    
asked by anonymous 02.06.2014 / 22:43

3 answers

2

You can not change the appearance of the WPF Message Box because it is not a window created by .Net using the WPF components, this window is basically a call to the Windows API, in this case the MessageBox itself of user32.dll

I would say your best alternatives are to even create your own window or use some component ready for it.

    
06.01.2015 / 13:32
1

If you do not want to use the WPF option you can do the same form and assign the buttons and features and create the DialogResults.

    
07.10.2014 / 22:47
0

Use WPF toolkit, then just change the layout of it with Style like any other Control:

link

    
30.06.2014 / 18:47