ComponentFactory.Krypton.Toolkit.KryptonMessageBox.Show C# (CSharp) Method

Show() public static method

Displays a message box in front of the specified object and with the specified text.
public static Show ( IWin32Window owner, string text ) : DialogResult
owner IWin32Window Owner of the modal dialog box.
text string The text to display in the message box.
return DialogResult
        public static DialogResult Show(IWin32Window owner, string text)
        {
            return InternalShow(owner, text, string.Empty, MessageBoxButtons.OK, MessageBoxIcon.None, MessageBoxDefaultButton.Button1, 0, null);
        }

Same methods

KryptonMessageBox::Show ( IWin32Window owner, string text, string caption ) : DialogResult
KryptonMessageBox::Show ( IWin32Window owner, string text, string caption, MessageBoxButtons buttons ) : DialogResult
KryptonMessageBox::Show ( IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon ) : DialogResult
KryptonMessageBox::Show ( IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton ) : DialogResult
KryptonMessageBox::Show ( IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options ) : DialogResult
KryptonMessageBox::Show ( IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options, string helpFilePath ) : DialogResult
KryptonMessageBox::Show ( IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options, string helpFilePath, HelpNavigator navigator ) : DialogResult
KryptonMessageBox::Show ( IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options, string helpFilePath, HelpNavigator navigator, object param ) : DialogResult
KryptonMessageBox::Show ( IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options, string helpFilePath, string keyword ) : DialogResult
KryptonMessageBox::Show ( string text ) : DialogResult
KryptonMessageBox::Show ( string text, string caption ) : DialogResult
KryptonMessageBox::Show ( string text, string caption, MessageBoxButtons buttons ) : DialogResult
KryptonMessageBox::Show ( string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon ) : DialogResult
KryptonMessageBox::Show ( string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton ) : DialogResult
KryptonMessageBox::Show ( string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options ) : DialogResult
KryptonMessageBox::Show ( string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options, bool displayHelpButton ) : DialogResult
KryptonMessageBox::Show ( string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options, string helpFilePath ) : DialogResult
KryptonMessageBox::Show ( string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options, string helpFilePath, HelpNavigator navigator ) : DialogResult
KryptonMessageBox::Show ( string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options, string helpFilePath, HelpNavigator navigator, object param ) : DialogResult
KryptonMessageBox::Show ( string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options, string helpFilePath, string keyword ) : DialogResult