Table of Contents

Class AnimationDecorator

Namespace
HeBianGu.Control.OutlookBar
Assembly
HeBianGu.Control.OutlookBar.dll
public class AnimationDecorator : Decorator, IAnimatable, ISupportInitialize, IFrameworkInputElement, IInputElement, IQueryAmbient, IAddChild
Inheritance
AnimationDecorator
Implements
Inherited Members
Extension Methods

Constructors

AnimationDecorator()

public AnimationDecorator()

Fields

AnimateOnContentHeightChangedProperty

public static readonly DependencyProperty AnimateOnContentHeightChangedProperty

Field Value

DependencyProperty

AnimationOpacityProperty

public static readonly DependencyProperty AnimationOpacityProperty

Field Value

DependencyProperty

CanAnimateProperty

public static readonly DependencyProperty CanAnimateProperty

Field Value

DependencyProperty

DurationProperty

public static readonly DependencyProperty DurationProperty

Field Value

DependencyProperty

HeightAnimationProperty

public static readonly DependencyProperty HeightAnimationProperty

Field Value

DependencyProperty

IsExpandedProperty

public static readonly DependencyProperty IsExpandedProperty

Field Value

DependencyProperty

OpacityAnimationProperty

public static readonly DependencyProperty OpacityAnimationProperty

Field Value

DependencyProperty

YOffsetProperty

public static readonly DependencyProperty YOffsetProperty

Field Value

DependencyProperty

Properties

AnimateOnContentHeightChanged

public bool AnimateOnContentHeightChanged { get; set; }

Property Value

bool

AnimationOpacity

Gets or sets the Opacity for animation. This dependency property can be used to modify the opacity of an outer control.

public double AnimationOpacity { get; set; }

Property Value

double

CanAnimate

public bool CanAnimate { get; set; }

Property Value

bool

Duration

Gets or sets the duration for the animation.

public Duration Duration { get; set; }

Property Value

Duration

HeightAnimation

Specify whether to apply animation when IsExpanded is changed.

public DoubleAnimation HeightAnimation { get; set; }

Property Value

DoubleAnimation

IsExpanded

Gets or sets whether the decorator is expanded or collapsed.

public bool IsExpanded { get; set; }

Property Value

bool

OpacityAnimation

Specify whether to apply opactiy animation.

public bool OpacityAnimation { get; set; }

Property Value

bool

Methods

ArrangeOverride(Size)

Arranges the content of a Decorator element.

protected override Size ArrangeOverride(Size arrangeSize)

Parameters

arrangeSize Size

The Size this element uses to arrange its child content.

Returns

Size

The Size that represents the arranged size of this Decorator element and its child.

IsExpandedChanged(DependencyObject, DependencyPropertyChangedEventArgs)

public static void IsExpandedChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)

Parameters

d DependencyObject
e DependencyPropertyChangedEventArgs

MeasureOverride(Size)

Measures the child element of a Decorator to prepare for arranging it during the ArrangeOverride(Size) pass.

protected override Size MeasureOverride(Size constraint)

Parameters

constraint Size

An upper limit Size that should not be exceeded.

Returns

Size

The target Size of the element.