Table of Contents

Class DialogHost

Namespace
HeBianGu.Control.Message
Assembly
HeBianGu.Control.Message.dll
[TemplatePart(Name = "PART_Popup", Type = typeof(Popup))]
[TemplatePart(Name = "PART_Popup", Type = typeof(ContentControl))]
[TemplatePart(Name = "PART_ContentCoverGrid", Type = typeof(Grid))]
[TemplateVisualState(GroupName = "PopupStates", Name = "Open")]
[TemplateVisualState(GroupName = "PopupStates", Name = "Closed")]
public class DialogHost : ContentControl, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient, IAddChild
Inheritance
DialogHost
Implements
Inherited Members
Extension Methods

Constructors

DialogHost()

public DialogHost()

Fields

CloseDialogCommand

Routed command to be used inside dialog content to close a dialog. Use a Button.CommandParameter to indicate the result of the parameter.

public static RoutedCommand CloseDialogCommand

Field Value

RoutedCommand

CloseOnClickAwayParameterProperty

public static readonly DependencyProperty CloseOnClickAwayParameterProperty

Field Value

DependencyProperty

CloseOnClickAwayProperty

public static readonly DependencyProperty CloseOnClickAwayProperty

Field Value

DependencyProperty

ClosedStateName

public const string ClosedStateName = "Closed"

Field Value

string

ContentCoverGridName

public const string ContentCoverGridName = "PART_ContentCoverGrid"

Field Value

string

DialogClosingAttachedProperty

Attached property which can be used on the Button which instigated the OpenDialogCommand to process the closing event.

public static readonly DependencyProperty DialogClosingAttachedProperty

Field Value

DependencyProperty

DialogClosingCallbackProperty

public static readonly DependencyProperty DialogClosingCallbackProperty

Field Value

DependencyProperty

DialogClosingEvent

public static readonly RoutedEvent DialogClosingEvent

Field Value

RoutedEvent

DialogContentProperty

public static readonly DependencyProperty DialogContentProperty

Field Value

DependencyProperty

DialogContentStringFormatProperty

public static readonly DependencyProperty DialogContentStringFormatProperty

Field Value

DependencyProperty

DialogContentTemplateProperty

public static readonly DependencyProperty DialogContentTemplateProperty

Field Value

DependencyProperty

DialogContentTemplateSelectorProperty

public static readonly DependencyProperty DialogContentTemplateSelectorProperty

Field Value

DependencyProperty

DialogMarginProperty

public static readonly DependencyProperty DialogMarginProperty

Field Value

DependencyProperty

DialogOpenedAttachedProperty

Attached property which can be used on the Button which instigated the OpenDialogCommand to process the event.

public static readonly DependencyProperty DialogOpenedAttachedProperty

Field Value

DependencyProperty

DialogOpenedCallbackProperty

public static readonly DependencyProperty DialogOpenedCallbackProperty

Field Value

DependencyProperty

DialogOpenedEvent

public static readonly RoutedEvent DialogOpenedEvent

Field Value

RoutedEvent

IdentifierProperty

public static readonly DependencyProperty IdentifierProperty

Field Value

DependencyProperty

IsOpenProperty

public static readonly DependencyProperty IsOpenProperty

Field Value

DependencyProperty

OpenDialogCommand

Routed command to be used somewhere inside an instance to trigger showing of the dialog. Content can be passed to the dialog via a Button.CommandParameter.

public static RoutedCommand OpenDialogCommand

Field Value

RoutedCommand

OpenDialogCommandDataContextSourceProperty

public static readonly DependencyProperty OpenDialogCommandDataContextSourceProperty

Field Value

DependencyProperty

OpenStateName

public const string OpenStateName = "Open"

Field Value

string

PopupContentPartName

public const string PopupContentPartName = "PART_PopupContentElement"

Field Value

string

PopupPartName

public const string PopupPartName = "PART_Popup"

Field Value

string

PopupStyleProperty

public static readonly DependencyProperty PopupStyleProperty

Field Value

DependencyProperty

SnackbarMessageQueueProperty

public static readonly DependencyProperty SnackbarMessageQueueProperty

Field Value

DependencyProperty

Properties

CloseOnClickAway

Indicates whether the dialog will close if the user clicks off the dialog, on the obscured background.

public bool CloseOnClickAway { get; set; }

Property Value

bool

CloseOnClickAwayParameter

Parameter to provide to close handlers if an close due to click away is instigated.

public object CloseOnClickAwayParameter { get; set; }

Property Value

object

DialogClosingCallback

Callback fired when the DialogClosing event is fired, allowing the event to be processed from a binding/view model.

public DialogClosingEventHandler DialogClosingCallback { get; set; }

Property Value

DialogClosingEventHandler

DialogContent

public object DialogContent { get; set; }

Property Value

object

DialogContentStringFormat

public string DialogContentStringFormat { get; set; }

Property Value

string

DialogContentTemplate

public DataTemplate DialogContentTemplate { get; set; }

Property Value

DataTemplate

DialogContentTemplateSelector

public DataTemplateSelector DialogContentTemplateSelector { get; set; }

Property Value

DataTemplateSelector

DialogMargin

public Thickness DialogMargin { get; set; }

Property Value

Thickness

DialogOpenedCallback

Callback fired when the DialogOpened event is fired, allowing the event to be processed from a binding/view model.

public DialogOpenedEventHandler DialogOpenedCallback { get; set; }

Property Value

DialogOpenedEventHandler

Identifier

Identifier which is used in conjunction with Show(object) to determine where a dialog should be shown.

public object Identifier { get; set; }

Property Value

object

IsOpen

public bool IsOpen { get; set; }

Property Value

bool

OpenDialogCommandDataContextSource

Defines how a data context is sourced for a dialog if a FrameworkElement is passed as the command parameter when using OpenDialogCommand.

public DialogHostOpenDialogCommandDataContextSource OpenDialogCommandDataContextSource { get; set; }

Property Value

DialogHostOpenDialogCommandDataContextSource

PopupStyle

public Style PopupStyle { get; set; }

Property Value

Style

SnackbarMessageQueue

Allows association of a snackbar, so that notifications can be paused whilst a dialog is being displayed.

public SnackbarMessageQueue SnackbarMessageQueue { get; set; }

Property Value

SnackbarMessageQueue

Methods

CloseIndenfer(string)

public static void CloseIndenfer(string dialogIdentifier)

Parameters

dialogIdentifier string

GetDialogClosingAttached(DependencyObject)

public static DialogClosingEventHandler GetDialogClosingAttached(DependencyObject element)

Parameters

element DependencyObject

Returns

DialogClosingEventHandler

GetDialogOpenedAttached(DependencyObject)

public static DialogOpenedEventHandler GetDialogOpenedAttached(DependencyObject element)

Parameters

element DependencyObject

Returns

DialogOpenedEventHandler

IsOpened()

public static bool IsOpened()

Returns

bool

OnApplyTemplate()

When overridden in a derived class, is invoked whenever application code or internal processes call ApplyTemplate().

public override void OnApplyTemplate()

OnDialogClosing(DialogClosingEventArgs)

protected void OnDialogClosing(DialogClosingEventArgs eventArgs)

Parameters

eventArgs DialogClosingEventArgs

OnDialogOpened(DialogClosedEventArgs)

protected void OnDialogOpened(DialogClosedEventArgs eventArgs)

Parameters

eventArgs DialogClosedEventArgs

OnPreviewMouseDown(MouseButtonEventArgs)

Invoked when an unhandled System.Windows.Input.Mouse.PreviewMouseDown attached routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.

protected override void OnPreviewMouseDown(MouseButtonEventArgs e)

Parameters

e MouseButtonEventArgs

The MouseButtonEventArgs that contains the event data. The event data reports that one or more mouse buttons were pressed.

SetDialogClosingAttached(DependencyObject, DialogClosingEventHandler)

public static void SetDialogClosingAttached(DependencyObject element, DialogClosingEventHandler value)

Parameters

element DependencyObject
value DialogClosingEventHandler

SetDialogOpenedAttached(DependencyObject, DialogOpenedEventHandler)

public static void SetDialogOpenedAttached(DependencyObject element, DialogOpenedEventHandler value)

Parameters

element DependencyObject
value DialogOpenedEventHandler

Show(object)

Shows a modal dialog. To use, a DialogHost instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).

public static Task<object> Show(object content)

Parameters

content object

Content to show (can be a control or view model).

Returns

Task<object>

Task result is the parameter used to close the dialog, typically what is passed to the CloseDialogCommand command.

Show(object, DialogClosingEventHandler)

Shows a modal dialog. To use, a DialogHost instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).

public static Task<object> Show(object content, DialogClosingEventHandler closingEventHandler)

Parameters

content object

Content to show (can be a control or view model).

closingEventHandler DialogClosingEventHandler

Allows access to closing event which would otherwise have been subscribed to on a instance.

Returns

Task<object>

Task result is the parameter used to close the dialog, typically what is passed to the CloseDialogCommand command.

Show(object, DialogOpenedEventHandler)

Shows a modal dialog. To use, a DialogHost instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).

public static Task<object> Show(object content, DialogOpenedEventHandler openedEventHandler)

Parameters

content object

Content to show (can be a control or view model).

openedEventHandler DialogOpenedEventHandler

Allows access to opened event which would otherwise have been subscribed to on a instance.

Returns

Task<object>

Task result is the parameter used to close the dialog, typically what is passed to the CloseDialogCommand command.

Show(object, DialogOpenedEventHandler, DialogClosingEventHandler)

Shows a modal dialog. To use, a DialogHost instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).

public static Task<object> Show(object content, DialogOpenedEventHandler openedEventHandler, DialogClosingEventHandler closingEventHandler)

Parameters

content object

Content to show (can be a control or view model).

openedEventHandler DialogOpenedEventHandler

Allows access to opened event which would otherwise have been subscribed to on a instance.

closingEventHandler DialogClosingEventHandler

Allows access to closing event which would otherwise have been subscribed to on a instance.

Returns

Task<object>

Task result is the parameter used to close the dialog, typically what is passed to the CloseDialogCommand command.

Show(object, object)

Shows a modal dialog. To use, a DialogHost instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).

public static Task<object> Show(object content, object dialogIdentifier)

Parameters

content object

Content to show (can be a control or view model).

dialogIdentifier object

Identifier of the instance where the dialog should be shown. Typically this will match an identifer set in XAML. null is allowed.

Returns

Task<object>

Task result is the parameter used to close the dialog, typically what is passed to the CloseDialogCommand command.

Show(object, object, DialogOpenedEventHandler, DialogClosingEventHandler)

Shows a modal dialog. To use, a DialogHost instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).

public static Task<object> Show(object content, object dialogIdentifier, DialogOpenedEventHandler openedEventHandler, DialogClosingEventHandler closingEventHandler)

Parameters

content object

Content to show (can be a control or view model).

dialogIdentifier object

Identifier of the instance where the dialog should be shown. Typically this will match an identifer set in XAML. null is allowed.

openedEventHandler DialogOpenedEventHandler

Allows access to opened event which would otherwise have been subscribed to on a instance.

closingEventHandler DialogClosingEventHandler

Allows access to closing event which would otherwise have been subscribed to on a instance.

Returns

Task<object>

Task result is the parameter used to close the dialog, typically what is passed to the CloseDialogCommand command.

ShowIndenfer(string)

public static void ShowIndenfer(string dialogIdentifier)

Parameters

dialogIdentifier string

ShowWithClose(object, object, DialogClosingEventHandler)

Shows a modal dialog. To use, a DialogHost instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).

public static Task<object> ShowWithClose(object content, object dialogIdentifier, DialogClosingEventHandler closingEventHandler)

Parameters

content object

Content to show (can be a control or view model).

dialogIdentifier object

Identifier of the instance where the dialog should be shown. Typically this will match an identifer set in XAML. null is allowed.

closingEventHandler DialogClosingEventHandler

Allows access to closing event which would otherwise have been subscribed to on a instance.

Returns

Task<object>

Task result is the parameter used to close the dialog, typically what is passed to the CloseDialogCommand command.

ShowWithOpen(object, object, DialogOpenedEventHandler)

Shows a modal dialog. To use, a DialogHost instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).

public static Task<object> ShowWithOpen(object content, object dialogIdentifier, DialogOpenedEventHandler openedEventHandler)

Parameters

content object

Content to show (can be a control or view model).

dialogIdentifier object

Identifier of the instance where the dialog should be shown. Typically this will match an identifer set in XAML. null is allowed.

openedEventHandler DialogOpenedEventHandler

Allows access to opened event which would otherwise have been subscribed to on a instance.

Returns

Task<object>

Task result is the parameter used to close the dialog, typically what is passed to the CloseDialogCommand command.

Events

DialogClosing

Raised just before a dialog is closed.

public event DialogClosingEventHandler DialogClosing

Event Type

DialogClosingEventHandler

DialogOpened

Raised when a dialog is opened.

public event DialogOpenedEventHandler DialogOpened

Event Type

DialogOpenedEventHandler