BooleanAnimationUsingKeyFrames::KeyFrames Property
Gets or sets the collection of BooleanKeyFrame objects that define the animation.
Assembly: PresentationCore (in PresentationCore.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
public: property BooleanKeyFrameCollection^ KeyFrames { BooleanKeyFrameCollection^ get (); void set (BooleanKeyFrameCollection^ value); }
<object> <BooleanKeyFrameCollection .../> </object>
Property Value
Type: System.Windows.Media.Animation::BooleanKeyFrameCollectionThe collection of BooleanKeyFrame objects that define the animation. The default value is Empty.
This example shows how to animate the Boolean property value of a Button control by using key frames.
The following example uses the BooleanAnimationUsingKeyFrames class to animate the IsEnabled property of a Button control. All the key frames in this example use an instance of the DiscreteBooleanKeyFrame class. Discrete key frames like DiscreteBooleanKeyFrame create sudden jumps between values, that is, the movement of the animation is jerky.
<!-- Demonstrates a BooleanAnimationUsingKeyFrames. The animation is used to animate the IsEnabled property of a button. --> <Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" WindowTitle="KeyFrameBoolean Animation Example"> <StackPanel Orientation="Vertical" Margin="20"> <TextBlock> Click the button to animate its IsEnabled property with a BooleanAnimationUsingKeyFrames animation. </TextBlock> <Button Name="myAnimatedButton" Margin="200">Click Me <Button.Triggers> <EventTrigger RoutedEvent="Button.Click"> <BeginStoryboard> <Storyboard> <BooleanAnimationUsingKeyFrames Storyboard.TargetName="myAnimatedButton" Storyboard.TargetProperty="IsEnabled" Duration="0:0:4" FillBehavior="HoldEnd"> <!-- All the key frames below are DiscreteBooleanKeyFrames. Discrete key frames create sudden "jumps" between values (no interpolation). Only discrete key frames can be used for Boolean key frame animations. --> <DiscreteBooleanKeyFrame Value="False" KeyTime="0:0:0" /> <DiscreteBooleanKeyFrame Value="True" KeyTime="0:0:1" /> <DiscreteBooleanKeyFrame Value="False" KeyTime="0:0:2" /> <DiscreteBooleanKeyFrame Value="True" KeyTime="0:0:3" /> <DiscreteBooleanKeyFrame Value="False" KeyTime="0:0:3.5" /> <DiscreteBooleanKeyFrame Value="True" KeyTime="0:0:4" /> </BooleanAnimationUsingKeyFrames> </Storyboard> </BeginStoryboard> </EventTrigger> </Button.Triggers> </Button> </StackPanel> </Page>
For the complete sample, see KeyFrame Animation Sample.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.