C# Class PocketCampus.Common.MessageBoxEx

Additional message boxes.
ファイルを表示 Open project: accandme/pocketcampus

Public Methods

Method Description
ShowDialog ( string caption, string message ) : void

Displays a simple dialog with an OK button.

ShowPrompt ( string caption, string message ) : bool

Prompts the user with a yes-or-no question.

Method Details

ShowDialog() public static method

Displays a simple dialog with an OK button.
public static ShowDialog ( string caption, string message ) : void
caption string The dialog caption.
message string The dialog message.
return void

ShowPrompt() public static method

Prompts the user with a yes-or-no question.
public static ShowPrompt ( string caption, string message ) : bool
caption string The dialog caption.
message string The dialog message.
return bool