Table of Contents

Class DialogClosingEventArgs

Namespace
HeBianGu.Control.Message
Assembly
HeBianGu.Control.Message.dll
public class DialogClosingEventArgs : RoutedEventArgs
Inheritance
DialogClosingEventArgs
Inherited Members
Extension Methods

Constructors

DialogClosingEventArgs(DialogSession, object)

public DialogClosingEventArgs(DialogSession session, object parameter)

Parameters

session DialogSession
parameter object

DialogClosingEventArgs(DialogSession, object, RoutedEvent)

public DialogClosingEventArgs(DialogSession session, object parameter, RoutedEvent routedEvent)

Parameters

session DialogSession
parameter object
routedEvent RoutedEvent

DialogClosingEventArgs(DialogSession, object, RoutedEvent, object)

public DialogClosingEventArgs(DialogSession session, object parameter, RoutedEvent routedEvent, object source)

Parameters

session DialogSession
parameter object
routedEvent RoutedEvent
source object

Properties

Content

Gets the DialogContent which is currently displayed, so this could be a view model or a UI element.

[Obsolete("Prefer Session.Content")]
public object Content { get; }

Property Value

object

IsCancelled

Indicates if the close has already been cancelled.

public bool IsCancelled { get; }

Property Value

bool

Parameter

Gets the paramter originally provided to CloseDialogCommand/

public object Parameter { get; }

Property Value

object

Session

Allows interation with the current dialog session.

public DialogSession Session { get; }

Property Value

DialogSession

Methods

Cancel()

Cancel the close.

public void Cancel()