Class LayoutAnchorable
Implements the model for a layout anchorable control (tool window). A LayoutAnchorable can be anchored to the left, right, top, or bottom side of the Layout property of the DockingManager. It can contain custom application content (WPF controls) and other children elements.
[Serializable]
public class LayoutAnchorable : LayoutContent, ILayoutElement, INotifyPropertyChanged, INotifyPropertyChanging, IXmlSerializable, IComparable<LayoutContent>
- Inheritance
-
LayoutAnchorable
- Implements
- Inherited Members
- Extension Methods
Constructors
LayoutAnchorable()
Class constructor
public LayoutAnchorable()
Properties
AutoHideHeight
Gets/sets the height for this anchorable in AutoHide mode.
public double AutoHideHeight { get; set; }
Property Value
AutoHideMinHeight
Gets/sets the minimum height for this anchorable in AutoHide mode.
public double AutoHideMinHeight { get; set; }
Property Value
AutoHideMinWidth
Gets/sets the minimum width for this anchorable in AutoHide mode.
public double AutoHideMinWidth { get; set; }
Property Value
AutoHideWidth
Gets/sets the width for this anchorable in AutoHide mode.
public double AutoHideWidth { get; set; }
Property Value
CanAutoHide
Gets/sets whether the anchorable can be anchored to an achor side in an AutoHide status or not.
public bool CanAutoHide { get; set; }
Property Value
CanDockAsTabbedDocument
Gets/sets whether the anchorable can be docked as a tabbed document or not.
public bool CanDockAsTabbedDocument { get; set; }
Property Value
CanHide
Gets/sets whether the anchorable can hide (be invisible in the UI) or not.
public bool CanHide { get; set; }
Property Value
CanMove
Gets/sets whether a document can be dragged (to be dropped in a different location) or not. Use this property in conjunction with CanMove and CanClose and CanDock to lock an anchorable in its layout position.
public bool CanMove { get; set; }
Property Value
IsAutoHidden
Get a value indicating if the anchorable is anchored to an achor side in an AutoHide status or not.
public bool IsAutoHidden { get; }
Property Value
IsHidden
Gets whether this object is in a state where it is not visible in the UI or not.
public bool IsHidden { get; }
Property Value
IsVisible
Gets/sets whether this object is in a state where it is visible in the UI or not.
public bool IsVisible { get; set; }
Property Value
Methods
AddToLayout(DockingManager, AnchorableShowStrategy)
Add the anchorable to a DockingManager layout.
public void AddToLayout(DockingManager manager, AnchorableShowStrategy strategy)
Parameters
manager
DockingManagerstrategy
AnchorableShowStrategy
Close()
Close the content
public override void Close()
Remarks
Note that the anchorable is only hidden (not closed). By default when user click the X button it only hides the content.
ConsoleDump(int)
public override void ConsoleDump(int tab)
Parameters
tab
int
Hide()
public void Hide()
InternalDock()
protected override void InternalDock()
OnHiding(CancelEventArgs)
Method can be invoked to fire the Hiding event.
protected virtual void OnHiding(CancelEventArgs args)
Parameters
args
CancelEventArgs
OnParentChanged(ILayoutContainer, ILayoutContainer)
Provides derived classes an opportunity to handle changes to the Parent property.
protected override void OnParentChanged(ILayoutContainer oldValue, ILayoutContainer newValue)
Parameters
oldValue
ILayoutContainernewValue
ILayoutContainer
ReadXml(XmlReader)
Generates an object from its XML representation.
public override void ReadXml(XmlReader reader)
Parameters
Show()
Show the content.
public void Show()
Remarks
Try to show the content where it was previously hidden.
ToggleAutoHide()
Reduce this object into an achored side panel position if it is currently docked or dock this object in the parent group if it is currently anchored in a side panel (AutoHide is active).
public void ToggleAutoHide()
WriteXml(XmlWriter)
Converts an object into its XML representation.
public override void WriteXml(XmlWriter writer)
Parameters
Events
Hiding
public event EventHandler<CancelEventArgs> Hiding
Event Type
IsVisibleChanged
Event is invoked when the visibility of this object has changed.
public event EventHandler IsVisibleChanged