| MessageBoxShow Method (String, MessageBoxType) | 
 
            Shows a message box, blocking input to all windows of the application until closed
            
 
    Namespace: 
   Eto.Forms
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
 Syntax
Syntaxpublic static DialogResult Show(
	string text,
	MessageBoxType type = MessageBoxType.Information
)
Public Shared Function Show ( 
	text As String,
	Optional type As MessageBoxType = MessageBoxType.Information
) As DialogResult
static member Show : 
        text : string * 
        ?type : MessageBoxType 
(* Defaults:
        let _type = defaultArg type MessageBoxType.Information
*)
-> DialogResult 
Parameters
- text
- Type: SystemString
 Text for the body of the message box
- type (Optional)
- Type: Eto.FormsMessageBoxType
 Type of message box
Return Value
Type: 
DialogResult[Missing <returns> documentation for "M:Eto.Forms.MessageBox.Show(System.String,Eto.Forms.MessageBoxType)"]
 See Also
See Also