Table of Contents

Class LayoutFloatingWindowControl

Namespace
HeBianGu.Control.Dock.Controls
Assembly
HeBianGu.Control.Dock.dll

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 ILayoutElement
isContentImmutable bool

Fields

AllowMinimizeProperty

AllowMinimize dependency property.

public static readonly DependencyProperty AllowMinimizeProperty

Field Value

DependencyProperty

ContentMinHeightProperty

public static readonly DependencyProperty ContentMinHeightProperty

Field Value

DependencyProperty

ContentMinHeightPropertyKey

public static readonly DependencyPropertyKey ContentMinHeightPropertyKey

Field Value

DependencyPropertyKey

ContentMinWidthProperty

public static readonly DependencyProperty ContentMinWidthProperty

Field Value

DependencyProperty

ContentMinWidthPropertyKey

public static readonly DependencyPropertyKey ContentMinWidthPropertyKey

Field Value

DependencyPropertyKey

IsContentImmutableProperty

IsContentImmutable dependency property.

public static readonly DependencyProperty IsContentImmutableProperty

Field Value

DependencyProperty

IsDraggingProperty

public static readonly DependencyProperty IsDraggingProperty

Field Value

DependencyProperty

IsMaximizedProperty

IsMaximized dependency property.

public static readonly DependencyProperty IsMaximizedProperty

Field Value

DependencyProperty

OwnedByDockingManagerWindowProperty

OwnedByDockingManagerWindow dependency property.

public static readonly DependencyProperty OwnedByDockingManagerWindowProperty

Field Value

DependencyProperty

TotalMarginProperty

public static readonly DependencyProperty TotalMarginProperty

Field Value

DependencyProperty

Properties

AllowMinimize

Gets/sets whether the floating window supports being minimized.

public bool AllowMinimize { get; set; }

Property Value

bool

CloseInitiatedByUser

protected bool CloseInitiatedByUser { get; }

Property Value

bool

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

double

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

double

IsContentImmutable

Gets/sets wether the content can be modified.

[Bindable(true)]
public bool IsContentImmutable { get; }

Property Value

bool

IsDragging

Gets wether this floating window is being dragged.

[Bindable(true)]
public bool IsDragging { get; }

Property Value

bool

IsMaximized

Gets/sets the IsMaximized property. This dependency property indicates if the window is maximized.

public bool IsMaximized { get; }

Property Value

bool

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

ILayoutElement

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

bool

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

Thickness

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

hwnd nint
msg int
wParam nint
lParam nint
handled bool

Returns

nint

OnClosed(EventArgs)

Raises the Closed event.

protected override void OnClosed(EventArgs e)

Parameters

e EventArgs

An EventArgs that contains the event data.

OnClosing(CancelEventArgs)

Raises the Closing event.

protected override void OnClosing(CancelEventArgs e)

Parameters

e CancelEventArgs

A 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 EventArgs

The 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

e DependencyPropertyChangedEventArgs

OnStateChanged(EventArgs)

Raises the StateChanged event.

protected override void OnStateChanged(EventArgs e)

Parameters

e EventArgs

An EventArgs that contains the event data.

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 bool

The new value for the property.

See Also