C# Class MetroIde.Dialogs.MetroMessageBox

Mostrar archivo Open project: ChadSki/Quickbeam

Public Methods

Method Description
Show ( string title, string message, MessageBoxButtons buttons ) : MessageBoxResult

Show a Metro Message Box

Show ( string message ) : void

Show a Metro Message Box

Show ( string title, string message ) : void

Show a Metro Message Box

Method Details

Show() public static method

Show a Metro Message Box
public static Show ( string title, string message, MessageBoxButtons buttons ) : MessageBoxResult
title string The title of the Message Box
message string The message to be displayed in the Message Box
buttons MessageBoxButtons The buttons to show in the Message Box
return MessageBoxResult

Show() public static method

Show a Metro Message Box
public static Show ( string message ) : void
message string The message to be displayed in the Message Box
return void

Show() public static method

Show a Metro Message Box
public static Show ( string title, string message ) : void
title string The title of the Message Box
message string The message to be displayed in the Message Box
return void