C# Class Caliburn.Micro.IWindowManagerExtensions

Mostrar archivo Open project: vcaraulean/Caliburn.Micro.Telerik

Public Methods

Method Description
Alert ( this windowManager, DialogParameters dialogParameters ) : void

Opens an Alert modal window

Alert ( this windowManager, string title, string message ) : void

Opens an Alert modal window

Confirm ( this windowManager, DialogParameters dialogParameters ) : void

Opens a Confirm modal window

Confirm ( this windowManager, string title, string message, System onOK, System onCancel = null ) : void

Opens a Confirm modal window

Prompt ( this windowManager, DialogParameters dialogParameters ) : void

Opens a Prompt modal window

Prompt ( this windowManager, string title, string message, string defaultPromptResultValue, Action onOK ) : void

Opens a Prompt modal window

Show ( this windowManager, object rootModel, object context = null, object>.IDictionary settings = null ) : void

Shows a normal, non-modal dialog for the specified model. By default RadWindow dialog is shown at the center of the screen

Method Details

Alert() public static method

Opens an Alert modal window
public static Alert ( this windowManager, DialogParameters dialogParameters ) : void
windowManager this
dialogParameters DialogParameters
return void

Alert() public static method

Opens an Alert modal window
public static Alert ( this windowManager, string title, string message ) : void
windowManager this
title string
message string
return void

Confirm() public static method

Opens a Confirm modal window
public static Confirm ( this windowManager, DialogParameters dialogParameters ) : void
windowManager this
dialogParameters DialogParameters
return void

Confirm() public static method

Opens a Confirm modal window
public static Confirm ( this windowManager, string title, string message, System onOK, System onCancel = null ) : void
windowManager this
title string
message string
onOK System
onCancel System
return void

Prompt() public static method

Opens a Prompt modal window
public static Prompt ( this windowManager, DialogParameters dialogParameters ) : void
windowManager this
dialogParameters DialogParameters
return void

Prompt() public static method

Opens a Prompt modal window
public static Prompt ( this windowManager, string title, string message, string defaultPromptResultValue, Action onOK ) : void
windowManager this
title string
message string
defaultPromptResultValue string
onOK Action
return void

Show() public static method

Shows a normal, non-modal dialog for the specified model. By default RadWindow dialog is shown at the center of the screen
public static Show ( this windowManager, object rootModel, object context = null, object>.IDictionary settings = null ) : void
windowManager this
rootModel object The root model.
context object The context.
settings object>.IDictionary The optional RadWindow settings.
return void