MessageBox.Show() Custom Icon?
I want to use a custom icon in MessageBox.Show("Message", "Title", MessageBoxButton.OK, MeesageBoxIcon.myIcon) Method. Any suggestion please? I wrote one a little while ago, it works exactly like the regular messagebox class. CustomMessageBox (Class): http://pastebin.com/m8evBmZi MessageForm (Form): http://pastebin.com/jawHZDzY MessageForm (Designer Code): http://pastebin.com/CRXjeUFN You can't override this behavior of MessageBox . The solution is either use some custom message box, check this , or implement your own MessageBoxForm and add your custom settings to it, check this . You can use