Table of Contents

Class LayoutAnchorableItem

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

Provides a WPF framework-level set of properties, events, and methods for Windows Presentation Foundation (WPF) elements. This class represents the provided WPF framework-level implementation that is built on the WPF core-level APIs that are defined by UIElement.

public class LayoutAnchorableItem : LayoutItem, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient
Inheritance
LayoutAnchorableItem
Implements
Inherited Members
Extension Methods

Fields

AutoHideCommandProperty

AutoHideCommand dependency property.

public static readonly DependencyProperty AutoHideCommandProperty

Field Value

DependencyProperty

CanHideProperty

CanHide dependency property.

public static readonly DependencyProperty CanHideProperty

Field Value

DependencyProperty

CanMoveProperty

CanMove dependency property.

public static readonly DependencyProperty CanMoveProperty

Field Value

DependencyProperty

DockCommandProperty

DockCommand dependency property.

public static readonly DependencyProperty DockCommandProperty

Field Value

DependencyProperty

HideCommandProperty

HideCommand dependency property.

public static readonly DependencyProperty HideCommandProperty

Field Value

DependencyProperty

Properties

AutoHideCommand

Gets/sets the command to execute when user click the auto hide button.

[Bindable(true)]
public ICommand AutoHideCommand { get; set; }

Property Value

ICommand

Remarks

By default this command toggles auto hide state for an anchorable.

CanHide

Gets/sets wether the user can hide the anchorable item.

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

Property Value

bool

CanMove

Gets/sets wether the user can hide the anchorable item.

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

Property Value

bool

DockCommand

Gets/sets the command to execute when user click the Dock button.

[Bindable(true)]
public ICommand DockCommand { get; set; }

Property Value

ICommand

Remarks

By default this command moves the anchorable inside the container pane which previously hosted the object.

HideCommand

Gets/sets the the command to execute when an anchorable is hidden.

[Bindable(true)]
public ICommand HideCommand { get; set; }

Property Value

ICommand

Methods

CanExecuteDockAsDocumentCommand()

protected override bool CanExecuteDockAsDocumentCommand()

Returns

bool

ClearDefaultBindings()

protected override void ClearDefaultBindings()

Close()

protected override void Close()

InitDefaultCommands()

protected override void InitDefaultCommands()

OnAutoHideCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the AutoHideCommand property.

protected virtual void OnAutoHideCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnCanHideChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the CanHide property.

protected virtual void OnCanHideChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnCanMoveChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the CanMove property.

protected virtual void OnCanMoveChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnDockCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the DockCommand property.

protected virtual void OnDockCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnHideCommandChanged(DependencyPropertyChangedEventArgs)

Provides derived classes an opportunity to handle changes to the HideCommand property.

protected virtual void OnHideCommandChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

OnVisibilityChanged()

protected override void OnVisibilityChanged()

SetDefaultBindings()

protected override void SetDefaultBindings()

See Also