Class LayoutAnchorSideControl
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
IsLeftSideProperty
public static readonly DependencyProperty IsLeftSideProperty
Field Value
IsRightSideProperty
public static readonly DependencyProperty IsRightSideProperty
Field Value
IsTopSideProperty
public static readonly DependencyProperty IsTopSideProperty
Field Value
Properties
Children
public ObservableCollection<LayoutAnchorGroupControl> Children { get; }
Property Value
IsBottomSide
Gets whether the control is anchored to bottom side.
[Bindable(true)]
public bool IsBottomSide { get; }
Property Value
IsLeftSide
Gets wether the control is anchored to left side.
[Bindable(true)]
public bool IsLeftSide { get; }
Property Value
IsRightSide
Gets wether the control is anchored to right side.
[Bindable(true)]
public bool IsRightSide { get; }
Property Value
IsTopSide
Gets wether the control is anchored to top side.
[Bindable(true)]
public bool IsTopSide { get; }
Property Value
Model
Gets the ILayoutElement model for this control.
public ILayoutElement Model { get; }
Property Value
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
EventArgsThe 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
boolThe 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
boolThe 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
boolThe 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
boolThe new value for the property.