Table of Contents

Class InlineModalDialog

Namespace
HeBianGu.General.WpfControlLib
Assembly
HeBianGu.General.WpfControlLib.dll

Provides a modal dialog that uses inline UIElements instead of a top-level window.

public class InlineModalDialog : HeaderedContentControl, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient, IAddChild
Inheritance
InlineModalDialog
Implements
Inherited Members
Extension Methods

Constructors

InlineModalDialog()

Initializes a new instance of the InlineModalDialog class.

public InlineModalDialog()

Fields

CloseCommand

Identifies the Close routed command, which can be used to close the dialog.

public static readonly RoutedCommand CloseCommand

Field Value

RoutedCommand

ClosedEvent

Identifies the Closed routed event.

public static readonly RoutedEvent ClosedEvent

Field Value

RoutedEvent

ClosingEvent

Identifies the Closing routed event.

public static readonly RoutedEvent ClosingEvent

Field Value

RoutedEvent

DialogIntroAnimationProperty

Identifies the DialogIntroAnimation dependency property.

public static readonly DependencyProperty DialogIntroAnimationProperty

Field Value

DependencyProperty

DialogOutroAnimationProperty

Identifies the DialogOutroAnimation dependency property.

public static readonly DependencyProperty DialogOutroAnimationProperty

Field Value

DependencyProperty

OpenedEvent

Identifies the Opened routed event.

public static readonly RoutedEvent OpenedEvent

Field Value

RoutedEvent

OwnerProperty

Identifies the Owner dependency property.

public static readonly DependencyProperty OwnerProperty

Field Value

DependencyProperty

ShowBlurrerProperty

Identifies the ShowBlurrer dependency property.

public static readonly DependencyProperty ShowBlurrerProperty

Field Value

DependencyProperty

Properties

DialogIntroAnimation

Gets or sets the animation that runs when this dialog is shown.

public Storyboard DialogIntroAnimation { get; set; }

Property Value

Storyboard

DialogOutroAnimation

Gets or sets the animation that runs when this dialog is closed.

public Storyboard DialogOutroAnimation { get; set; }

Property Value

Storyboard

DialogResult

Gets or sets the dialog result.

public bool? DialogResult { get; set; }

Property Value

bool?

The dialog result.

Owner

Gets or sets the owner. This value is used to retrieve the corresponding InlineModalDecorator.

public DependencyObject Owner { get; set; }

Property Value

DependencyObject

The owner.

ShowBlurrer

Gets or sets a value indicating whether to show the blurrer.

public bool ShowBlurrer { get; set; }

Property Value

bool

true if the blurrer is shown; otherwise, false.

Methods

Close()

Closes the modal dialog.

public void Close()

CloseCurrent(DependencyObject)

Attempts to close the front-most dialog of the provided owner.

public static void CloseCurrent(DependencyObject owner)

Parameters

owner DependencyObject

OnClosed()

Raises the Closed routed event.

protected virtual void OnClosed()

OnClosing(CancelRoutedEventArgs)

Raises the Closing routed event.

protected virtual void OnClosing(CancelRoutedEventArgs args)

Parameters

args CancelRoutedEventArgs

OnOpened()

Raises the Opened routed event.

protected virtual void OnOpened()

Show()

Shows the modal dialog.

public void Show()

Events

Closed

Fires when the dialog closes.

public event RoutedEventHandler Closed

Event Type

RoutedEventHandler

Closing

Fires when the dialog is about to close.

public event CancelRoutedEventHandler Closing

Event Type

CancelRoutedEventHandler

Opened

Fires when the dialog is opened.

public event RoutedEventHandler Opened

Event Type

RoutedEventHandler