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
ClosedEvent
Identifies the Closed routed event.
public static readonly RoutedEvent ClosedEvent
Field Value
ClosingEvent
Identifies the Closing routed event.
public static readonly RoutedEvent ClosingEvent
Field Value
DialogIntroAnimationProperty
Identifies the DialogIntroAnimation dependency property.
public static readonly DependencyProperty DialogIntroAnimationProperty
Field Value
DialogOutroAnimationProperty
Identifies the DialogOutroAnimation dependency property.
public static readonly DependencyProperty DialogOutroAnimationProperty
Field Value
OpenedEvent
Identifies the Opened routed event.
public static readonly RoutedEvent OpenedEvent
Field Value
OwnerProperty
Identifies the Owner dependency property.
public static readonly DependencyProperty OwnerProperty
Field Value
ShowBlurrerProperty
Identifies the ShowBlurrer dependency property.
public static readonly DependencyProperty ShowBlurrerProperty
Field Value
Properties
DialogIntroAnimation
Gets or sets the animation that runs when this dialog is shown.
public Storyboard DialogIntroAnimation { get; set; }
Property Value
DialogOutroAnimation
Gets or sets the animation that runs when this dialog is closed.
public Storyboard DialogOutroAnimation { get; set; }
Property Value
DialogResult
Gets or sets the dialog result.
public bool? DialogResult { get; set; }
Property Value
- bool?
The dialog result.
Owner
Gets or sets the owner.
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
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
Closing
Fires when the dialog is about to close.
public event CancelRoutedEventHandler Closing
Event Type
Opened
Fires when the dialog is opened.
public event RoutedEventHandler Opened