C# Класс Caliburn.Micro.IWindowManagerExtensions

Показать файл Открыть проект

Открытые методы

Метод Описание
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

Описание методов

Alert() публичный статический Метод

Opens an Alert modal window
public static Alert ( this windowManager, DialogParameters dialogParameters ) : void
windowManager this
dialogParameters DialogParameters
Результат void

Alert() публичный статический Метод

Opens an Alert modal window
public static Alert ( this windowManager, string title, string message ) : void
windowManager this
title string
message string
Результат void

Confirm() публичный статический Метод

Opens a Confirm modal window
public static Confirm ( this windowManager, DialogParameters dialogParameters ) : void
windowManager this
dialogParameters DialogParameters
Результат void

Confirm() публичный статический Метод

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
Результат void

Prompt() публичный статический Метод

Opens a Prompt modal window
public static Prompt ( this windowManager, DialogParameters dialogParameters ) : void
windowManager this
dialogParameters DialogParameters
Результат void

Prompt() публичный статический Метод

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
Результат void

Show() публичный статический Метод

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.
Результат void