Table of Contents

Class LayoutAnchorableControl

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

Represents the base class for user interface (UI) elements that use a ControlTemplate to define their appearance.

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

Constructors

LayoutAnchorableControl()

Class constructor

public LayoutAnchorableControl()

Fields

LayoutItemProperty

public static readonly DependencyProperty LayoutItemProperty

Field Value

DependencyProperty

ModelProperty

Model dependency property.

public static readonly DependencyProperty ModelProperty

Field Value

DependencyProperty

Properties

LayoutItem

Gets the the LayoutItem attached to this tag item.

[Bindable(true)]
public LayoutItem LayoutItem { get; }

Property Value

LayoutItem

Model

Gets/sets the model attached to this view.

[Bindable(true)]
public LayoutAnchorable Model { get; set; }

Property Value

LayoutAnchorable

Methods

OnGotKeyboardFocus(KeyboardFocusChangedEventArgs)

Invoked when an unhandled System.Windows.Input.Keyboard.GotKeyboardFocus attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.

protected override void OnGotKeyboardFocus(KeyboardFocusChangedEventArgs e)

Parameters

e KeyboardFocusChangedEventArgs

The KeyboardFocusChangedEventArgs that contains the event data.

OnModelChanged(DependencyPropertyChangedEventArgs)

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

protected virtual void OnModelChanged(DependencyPropertyChangedEventArgs e)

Parameters

e DependencyPropertyChangedEventArgs

SetLayoutItem(LayoutItem)

Provides a secure method for setting the LayoutItem property. This dependency property indicates the LayoutItem attached to this tag item.

protected void SetLayoutItem(LayoutItem value)

Parameters

value LayoutItem

The new value for the property.

See Also