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.
How to create, in code behind (with no XAML), a custom MessageBox (Dialog Boxes)
Share
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
MyWindow.ShowDialog().Like in this code: