Table of Contents

Class LayoutAnchorSideControl

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

Defines a control class that hosts a ILayoutElement as its model

public class LayoutAnchorSideControl : Control, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient, ILayoutControl
Inheritance
LayoutAnchorSideControl
Implements
Inherited Members
Extension Methods

Fields

IsBottomSideProperty

public static readonly DependencyProperty IsBottomSideProperty

Field Value

DependencyProperty

IsLeftSideProperty

public static readonly DependencyProperty IsLeftSideProperty

Field Value

DependencyProperty

IsRightSideProperty

public static readonly DependencyProperty IsRightSideProperty

Field Value

DependencyProperty

IsTopSideProperty

public static readonly DependencyProperty IsTopSideProperty

Field Value

DependencyProperty

Properties

Children

public ObservableCollection<LayoutAnchorGroupControl> Children { get; }

Property Value

ObservableCollection<LayoutAnchorGroupControl>

IsBottomSide

Gets whether the control is anchored to bottom side.

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

Property Value

bool

IsLeftSide

Gets wether the control is anchored to left side.

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

Property Value

bool

IsRightSide

Gets wether the control is anchored to right side.

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

Property Value

bool

IsTopSide

Gets wether the control is anchored to top side.

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

Property Value

bool

Model

Gets the ILayoutElement model for this control.

public ILayoutElement Model { get; }

Property Value

ILayoutElement

Methods

OnApplyTemplate()

When overridden in a derived class, is invoked whenever application code or internal processes call ApplyTemplate().

public override void OnApplyTemplate()

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.

SetIsBottomSide(bool)

Provides a secure method for setting the IsBottomSide property. This dependency property indicates if this panel is anchored to bottom side.

protected void SetIsBottomSide(bool value)

Parameters

value bool

The new value for the property.

SetIsLeftSide(bool)

Provides a secure method for setting the IsLeftSide property. This dependency property indicates this control is anchored to left side.

protected void SetIsLeftSide(bool value)

Parameters

value bool

The new value for the property.

SetIsRightSide(bool)

Provides a secure method for setting the IsRightSide property. This dependency property indicates this control is anchored to right side.

protected void SetIsRightSide(bool value)

Parameters

value bool

The new value for the property.

SetIsTopSide(bool)

Provides a secure method for setting the IsTopSide property. This dependency property indicates this control is anchored to top side.

protected void SetIsTopSide(bool value)

Parameters

value bool

The new value for the property.

See Also