Click or drag to resize

StateModelFrameBinding Property

Binds the animation to a property value.

Namespace:  Livit.Learn.Model
Assembly:  Livit.Learn.Model (in Livit.Learn.Model.dll) Version: 0.0.0.0
Syntax
C#
public string FrameBinding { get; set; }

Property Value

Type: String
Remarks

This property is used to bind the animation playback to a property's value, making the animation follow the value as it changes.

Examples
In this example, the progress of the Filling animation will follow the value of the LoadProgress property:
XML
<State Id="LoadingAnimation" AnimationId="Filling" IsDefault="true" FrameBinding="EngineRoot.Lookup.Loading.LoadProgress" />
See Also