Class LayoutPositionableGroup<T>
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
-
LayoutGroup<T>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
CanRepositionItems
public bool CanRepositionItems { get; set; }
Property Value
DockHeight
Gets/sets the GridLength of the dock height for this positionable layout element.
public GridLength DockHeight { get; set; }
Property Value
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
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
DockWidth
Gets/sets the GridLength of the dock width for this positionable layout element.
public GridLength DockWidth { get; set; }
Property Value
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
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
FloatingHeight
Gets/sets the height of the floating window.
public double FloatingHeight { get; set; }
Property Value
FloatingLeft
Gets/sets the left position of the floating window.
public double FloatingLeft { get; set; }
Property Value
FloatingTop
Gets/sets the top position of the floating window.
public double FloatingTop { get; set; }
Property Value
FloatingWidth
Gets/sets the width of the floating window.
public double FloatingWidth { get; set; }
Property Value
IsMaximized
Gets/sets whether the floating window is maximized or not.
public bool IsMaximized { get; set; }
Property Value
ResizableAbsoluteDockHeight
public double ResizableAbsoluteDockHeight { get; set; }
Property Value
ResizableAbsoluteDockWidth
public double ResizableAbsoluteDockWidth { get; set; }
Property Value
Methods
CalculatedDockMinHeight()
Computes the minimum dock with of this element including its childrens minimum dock witdh.
public double CalculatedDockMinHeight()
Returns
CalculatedDockMinWidth()
Computes the minimum dock with of this element including its childrens minimum dock witdh.
public double CalculatedDockMinWidth()
Returns
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