Table of Contents

Class LayoutPositionableGroup<T>

Namespace
HeBianGu.Control.Dock.Layout
Assembly
HeBianGu.Control.Dock.dll

Provides a base class for other layout panel models that support a specific class of panel.

[Serializable]
public abstract class LayoutPositionableGroup<T> : LayoutGroup<T>, ILayoutGroup, ILayoutContainer, IXmlSerializable, ILayoutElement, INotifyPropertyChanged, INotifyPropertyChanging where T : class, ILayoutElement

Type Parameters

T
Inheritance
LayoutPositionableGroup<T>
Implements
Derived
Inherited Members
Extension Methods

Properties

AllowDuplicateContent

Gets or sets the AllowDuplicateContent property. When this property is true, then the LayoutDocumentPane or LayoutAnchorablePane allows dropping duplicate content (according to its Title and ContentId). When this dependency property is false, then the LayoutDocumentPane or LayoutAnchorablePane hides the OverlayWindow.DropInto button to prevent dropping of duplicate content.

public bool AllowDuplicateContent { get; set; }

Property Value

bool

CanRepositionItems

public bool CanRepositionItems { get; set; }

Property Value

bool

DockHeight

Gets/sets the GridLength of the dock height for this positionable layout element.

public GridLength DockHeight { get; set; }

Property Value

GridLength

DockMinHeight

Defines the smallest available height that can be applied to a deriving element.

The system ensures the minimum height by blocking/limiting GridSplitter movement when the user resizes a deriving element or resizes the main window.

public double DockMinHeight { get; set; }

Property Value

double

DockMinWidth

Defines the smallest available width that can be applied to a deriving element.

The system ensures the minimum width by blocking/limiting GridSplitter movement when the user resizes a deriving element or resizes the main window.

public double DockMinWidth { get; set; }

Property Value

double

DockWidth

Gets/sets the GridLength of the dock width for this positionable layout element.

public GridLength DockWidth { get; set; }

Property Value

GridLength

FixedDockHeight

Gets the current DockHeight value if the DockHeight is absolute and the DockHeight value is greater equal DockMinHeight or the DockMinHeight, otherwise.

public double FixedDockHeight { get; }

Property Value

double

FixedDockWidth

Gets the current DockWidth value if the DockWidth is absolute and the DockWidth value is greater equal DockMinWidth or the DockMinWidth, otherwise.

public double FixedDockWidth { get; }

Property Value

double

FloatingHeight

Gets/sets the height of the floating window.

public double FloatingHeight { get; set; }

Property Value

double

FloatingLeft

Gets/sets the left position of the floating window.

public double FloatingLeft { get; set; }

Property Value

double

FloatingTop

Gets/sets the top position of the floating window.

public double FloatingTop { get; set; }

Property Value

double

FloatingWidth

Gets/sets the width of the floating window.

public double FloatingWidth { get; set; }

Property Value

double

IsMaximized

Gets/sets whether the floating window is maximized or not.

public bool IsMaximized { get; set; }

Property Value

bool

ResizableAbsoluteDockHeight

public double ResizableAbsoluteDockHeight { get; set; }

Property Value

double

ResizableAbsoluteDockWidth

public double ResizableAbsoluteDockWidth { get; set; }

Property Value

double

Methods

CalculatedDockMinHeight()

Computes the minimum dock with of this element including its childrens minimum dock witdh.

public double CalculatedDockMinHeight()

Returns

double

CalculatedDockMinWidth()

Computes the minimum dock with of this element including its childrens minimum dock witdh.

public double CalculatedDockMinWidth()

Returns

double

OnDockHeightChanged()

protected virtual void OnDockHeightChanged()

OnDockWidthChanged()

protected virtual void OnDockWidthChanged()

ReadXml(XmlReader)

provides a standard overridable implementation for deriving classes.

public override void ReadXml(XmlReader reader)

Parameters

reader XmlReader

WriteXml(XmlWriter)

provides a standard overridable implementation for deriving classes.

public override void WriteXml(XmlWriter writer)

Parameters

writer XmlWriter

Events

FloatingPropertiesUpdated

Event fired when floating properties were updated.

public event EventHandler FloatingPropertiesUpdated

Event Type

EventHandler