How to create, in code behind (with no XAML), a custom MessageBox (Dialog Boxes) in WPF C#? I googled it and seems not to find a solution. I would want to have a MessageBox with Images and other Controls add to it.
|
|
You may use this solution:
look over this article, you my recode all Xaml into pure c# in Custom Dialog Boxes paragraph if you want. or you may create your own Window and use Like in this code:
|
||||
|
|
|
Why don't you just create your custom Window in XAML and then use showDialog() in code-behind? |
|||
|
|
|
Everything from XAML can be rewrited in pure c#:
will looks like this:
|
|||
|
|
|
For images, there is source code (or a prebuilt one) for you in the WPF toolkit http://wpftoolkit.codeplex.com/wikipage?title=MessageBox&version=31 If you need more than an image, a line of text and a couple of buttons, then you should probably start looking at just using a new Window invoked with ShowDialog() |
|||
|
|
|
I've implemented a WPF MessageBox that has the exact same interface has the normal one and is also fully customizable via standard WPF control templates: Features
|
|||
|
|
