Class DialogHost
[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
CloseOnClickAwayParameterProperty
public static readonly DependencyProperty CloseOnClickAwayParameterProperty
Field Value
CloseOnClickAwayProperty
public static readonly DependencyProperty CloseOnClickAwayProperty
Field Value
ClosedStateName
public const string ClosedStateName = "Closed"
Field Value
ContentCoverGridName
public const string ContentCoverGridName = "PART_ContentCoverGrid"
Field Value
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
DialogClosingCallbackProperty
public static readonly DependencyProperty DialogClosingCallbackProperty
Field Value
DialogClosingEvent
public static readonly RoutedEvent DialogClosingEvent
Field Value
DialogContentProperty
public static readonly DependencyProperty DialogContentProperty
Field Value
DialogContentStringFormatProperty
public static readonly DependencyProperty DialogContentStringFormatProperty
Field Value
DialogContentTemplateProperty
public static readonly DependencyProperty DialogContentTemplateProperty
Field Value
DialogContentTemplateSelectorProperty
public static readonly DependencyProperty DialogContentTemplateSelectorProperty
Field Value
DialogMarginProperty
public static readonly DependencyProperty DialogMarginProperty
Field Value
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
DialogOpenedCallbackProperty
public static readonly DependencyProperty DialogOpenedCallbackProperty
Field Value
DialogOpenedEvent
public static readonly RoutedEvent DialogOpenedEvent
Field Value
IdentifierProperty
public static readonly DependencyProperty IdentifierProperty
Field Value
IsOpenProperty
public static readonly DependencyProperty IsOpenProperty
Field Value
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
OpenDialogCommandDataContextSourceProperty
public static readonly DependencyProperty OpenDialogCommandDataContextSourceProperty
Field Value
OpenStateName
public const string OpenStateName = "Open"
Field Value
PopupContentPartName
public const string PopupContentPartName = "PART_PopupContentElement"
Field Value
PopupPartName
public const string PopupPartName = "PART_Popup"
Field Value
PopupStyleProperty
public static readonly DependencyProperty PopupStyleProperty
Field Value
SnackbarMessageQueueProperty
public static readonly DependencyProperty SnackbarMessageQueueProperty
Field Value
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
CloseOnClickAwayParameter
Parameter to provide to close handlers if an close due to click away is instigated.
public object CloseOnClickAwayParameter { get; set; }
Property Value
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
DialogContent
public object DialogContent { get; set; }
Property Value
DialogContentStringFormat
public string DialogContentStringFormat { get; set; }
Property Value
DialogContentTemplate
public DataTemplate DialogContentTemplate { get; set; }
Property Value
DialogContentTemplateSelector
public DataTemplateSelector DialogContentTemplateSelector { get; set; }
Property Value
DialogMargin
public Thickness DialogMargin { get; set; }
Property Value
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
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
IsOpen
public bool IsOpen { get; set; }
Property Value
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
PopupStyle
public Style PopupStyle { get; set; }
Property Value
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
Methods
CloseIndenfer(string)
public static void CloseIndenfer(string dialogIdentifier)
Parameters
dialogIdentifier
string
GetDialogClosingAttached(DependencyObject)
public static DialogClosingEventHandler GetDialogClosingAttached(DependencyObject element)
Parameters
element
DependencyObject
Returns
GetDialogOpenedAttached(DependencyObject)
public static DialogOpenedEventHandler GetDialogOpenedAttached(DependencyObject element)
Parameters
element
DependencyObject
Returns
IsOpened()
public static bool IsOpened()
Returns
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
MouseButtonEventArgsThe 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
DependencyObjectvalue
DialogClosingEventHandler
SetDialogOpenedAttached(DependencyObject, DialogOpenedEventHandler)
public static void SetDialogOpenedAttached(DependencyObject element, DialogOpenedEventHandler value)
Parameters
element
DependencyObjectvalue
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
objectContent 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
objectContent to show (can be a control or view model).
closingEventHandler
DialogClosingEventHandlerAllows 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
objectContent to show (can be a control or view model).
openedEventHandler
DialogOpenedEventHandlerAllows 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
objectContent to show (can be a control or view model).
openedEventHandler
DialogOpenedEventHandlerAllows access to opened event which would otherwise have been subscribed to on a instance.
closingEventHandler
DialogClosingEventHandlerAllows 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
objectContent to show (can be a control or view model).
dialogIdentifier
objectIdentifier 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
objectContent to show (can be a control or view model).
dialogIdentifier
objectIdentifier of the instance where the dialog should be shown. Typically this will match an identifer set in XAML.
null
is allowed.openedEventHandler
DialogOpenedEventHandlerAllows access to opened event which would otherwise have been subscribed to on a instance.
closingEventHandler
DialogClosingEventHandlerAllows 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
objectContent to show (can be a control or view model).
dialogIdentifier
objectIdentifier of the instance where the dialog should be shown. Typically this will match an identifer set in XAML.
null
is allowed.closingEventHandler
DialogClosingEventHandlerAllows 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
objectContent to show (can be a control or view model).
dialogIdentifier
objectIdentifier of the instance where the dialog should be shown. Typically this will match an identifer set in XAML.
null
is allowed.openedEventHandler
DialogOpenedEventHandlerAllows 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
DialogOpened
Raised when a dialog is opened.
public event DialogOpenedEventHandler DialogOpened