5 Aug
2010

Extended WPF Toolkit – New MessageBox Control

Category:UncategorizedTag: , , :

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

messagebox_buttons

Icons

messagebox_icons

Usage

  1. MessageBoxResult result =??Microsoft.Windows.Controls.MessageBox.Show("Hello world!", "Extended WPF ToolKit MessageBox", MessageBoxButton.OK, MessageBoxImage.Question);

6 thoughts on “Extended WPF Toolkit – New MessageBox Control

  1. When the MsgBox will be available in the “Extended WPF Toolkit.dll”, not source code only ? best regards 🙂

  2. The images of message box shown above have border with grey color, how could this be achieved? Thanks in advance…

  3. Why is it hidden when I call:
    MessageBoxResultresult = Microsoft.Windows.Controls.MessageBox.Show(this,”Hello world!”, “Extended WPF ToolKit MessageBox”, MessageBoxButton.OK);result = Microsoft.Windows.Controls.MessageBox.Show(this,”Hello world!”, “Extended WPF ToolKit MessageBox”, MessageBoxButton.OK);

  4. Hi, how can the contents of the MessageBoxButtons  be localized? I always get “Yes” and “Cancel” though my current culture is set to “de-DE”?

Comments are closed.