I have added a new control to the Extended WPF Toolkit project on CodePlex called the MessageBox. It is currently in beta and is only available in the source code download. The MessageBox control mimics the System.Windows.MessageBox closely and you use similar syntax to create it.
MessageBox
Displays a message box that has a message and that returns a result.
Buttons
Icons
Usage
- MessageBoxResult result = Microsoft.Windows.Controls.MessageBox.Show("Hello world!", "Extended WPF ToolKit MessageBox", MessageBoxButton.OK, MessageBoxImage.Question);
- MessageBoxResult result = Microsoft.Windows.Controls.MessageBox.Show("Hello world!", "Extended WPF ToolKit MessageBox", MessageBoxButton.OK, MessageBoxImage.Question);