in our WPF application if we want to make our messagebox more stylist like: we can easily do it in our application. For this we need to add a dll name WPF Extended toolkit to download from : http://wpftoolkit.codeplex.com/ To represent the messagebox we can use: MessageBoxResult result = Microsoft.Windows.Controls.MessageBox.Show("You are welcome", "Extended WPF ToolKit MessageBox", MessageBoxButton.OKCancel, MessageBoxImage.Information); Enjoy....
Work smarter, not harder.