C# Class Caliburn.Micro.IWindowManagerExtensions

Afficher le fichier Open project: vcaraulean/Caliburn.Micro.Telerik

Méthodes publiques

Méthode 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 méthode

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

Alert() public static méthode

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

Confirm() public static méthode

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

Confirm() public static méthode

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
Résultat void

Prompt() public static méthode

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

Prompt() public static méthode

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
Résultat void

Show() public static méthode

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.
Résultat void