Class LayoutFloatingWindowControl
Provides the ability to create, configure, show, and manage the lifetime of windows and dialog boxes.
public abstract class LayoutFloatingWindowControl : Window, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient, IAddChild, ILayoutControl
- Inheritance
-
LayoutFloatingWindowControl
- Implements
- Derived
- Inherited Members
- Extension Methods
Constructors
LayoutFloatingWindowControl(ILayoutElement)
protected LayoutFloatingWindowControl(ILayoutElement model)
Parameters
model
ILayoutElement
LayoutFloatingWindowControl(ILayoutElement, bool)
protected LayoutFloatingWindowControl(ILayoutElement model, bool isContentImmutable)
Parameters
model
ILayoutElementisContentImmutable
bool
Fields
AllowMinimizeProperty
AllowMinimize dependency property.
public static readonly DependencyProperty AllowMinimizeProperty
Field Value
ContentMinHeightProperty
public static readonly DependencyProperty ContentMinHeightProperty
Field Value
ContentMinHeightPropertyKey
public static readonly DependencyPropertyKey ContentMinHeightPropertyKey
Field Value
ContentMinWidthProperty
public static readonly DependencyProperty ContentMinWidthProperty
Field Value
ContentMinWidthPropertyKey
public static readonly DependencyPropertyKey ContentMinWidthPropertyKey
Field Value
IsContentImmutableProperty
IsContentImmutable dependency property.
public static readonly DependencyProperty IsContentImmutableProperty
Field Value
IsDraggingProperty
public static readonly DependencyProperty IsDraggingProperty
Field Value
IsMaximizedProperty
IsMaximized dependency property.
public static readonly DependencyProperty IsMaximizedProperty
Field Value
OwnedByDockingManagerWindowProperty
OwnedByDockingManagerWindow dependency property.
public static readonly DependencyProperty OwnedByDockingManagerWindowProperty
Field Value
TotalMarginProperty
public static readonly DependencyProperty TotalMarginProperty
Field Value
Properties
AllowMinimize
Gets/sets whether the floating window supports being minimized.
public bool AllowMinimize { get; set; }
Property Value
CloseInitiatedByUser
protected bool CloseInitiatedByUser { get; }
Property Value
ContentMinHeight
The MinHeight of the content of the window, will be 0 until the window has been rendered, or if the MinHeight is unset for the content
public double ContentMinHeight { get; set; }
Property Value
ContentMinWidth
The MinWidth ocf the content of the window, will be 0 until the window has been rendered, or if the MinWidth is unset for the content
public double ContentMinWidth { get; set; }
Property Value
IsContentImmutable
Gets/sets wether the content can be modified.
[Bindable(true)]
public bool IsContentImmutable { get; }
Property Value
IsDragging
Gets wether this floating window is being dragged.
[Bindable(true)]
public bool IsDragging { get; }
Property Value
IsMaximized
Gets/sets the IsMaximized property. This dependency property indicates if the window is maximized.
public bool IsMaximized { get; }
Property Value
Remarks
Provides a secure method for setting the IsMaximized property.
Model
Gets the ILayoutElement model for this control.
public abstract ILayoutElement Model { get; }
Property Value
OwnedByDockingManagerWindow
Gets or sets a value indicating whether an undocked child window should be "owned" by the window that hosts the docking manager or whether it should be an independent window.
public bool OwnedByDockingManagerWindow { get; set; }
Property Value
TotalMargin
The total margin (including window chrome and title bar).
The margin is queried from the visual tree the first time it is rendered, zero until the first call of FilterMessage(WM_ACTIVATE)
public Thickness TotalMargin { get; protected set; }
Property Value
Methods
DisableBindings()
public virtual void DisableBindings()
EnableBindings()
public virtual void EnableBindings()
FilterMessage(nint, int, nint, nint, ref bool)
protected virtual nint FilterMessage(nint hwnd, int msg, nint wParam, nint lParam, ref bool handled)
Parameters
Returns
OnClosed(EventArgs)
Raises the Closed event.
protected override void OnClosed(EventArgs e)
Parameters
OnClosing(CancelEventArgs)
Raises the Closing event.
protected override void OnClosing(CancelEventArgs e)
Parameters
e
CancelEventArgsA CancelEventArgs that contains the event data.
OnInitialized(EventArgs)
Raises the Initialized event. This method is invoked whenever IsInitialized is set to true internally.
protected override void OnInitialized(EventArgs e)
Parameters
e
EventArgsThe RoutedEventArgs that contains the event data.
OnIsDraggingChanged(DependencyPropertyChangedEventArgs)
Provides derived classes an opportunity to handle changes to the IsDragging property.
protected virtual void OnIsDraggingChanged(DependencyPropertyChangedEventArgs e)
Parameters
OnStateChanged(EventArgs)
Raises the StateChanged event.
protected override void OnStateChanged(EventArgs e)
Parameters
SetIsDragging(bool)
Provides a secure method for setting the IsDragging property. This dependency property indicates that this floating window is being dragged.
protected void SetIsDragging(bool value)
Parameters
value
boolThe new value for the property.