DoubleKeyFrameCollection 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示 DoubleKeyFrame 对象集合。
public ref class DoubleKeyFrameCollection : System::Windows::Freezable, System::Collections::IList
public class DoubleKeyFrameCollection : System.Windows.Freezable, System.Collections.IList
type DoubleKeyFrameCollection = class
inherit Freezable
interface IList
interface ICollection
interface IEnumerable
type DoubleKeyFrameCollection = class
inherit Freezable
interface ICollection
interface IEnumerable
interface IList
Public Class DoubleKeyFrameCollection
Inherits Freezable
Implements IList
- 继承
- 实现
示例
以下示例演示如何使用 DoubleAnimationUsingKeyFrames 动画。
<!-- This example shows how to use the DoubleAnimationUsingKeyFrames to create
an animation on the Canvas.Left attached property of a rectangle. -->
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Name="myRootElement"
WindowTitle="KeyFrame Animations">
<!-- Key frame animations enable you to create complex animations by specifying multiple destination values
and controlling the animation's interpolation method. -->
<Canvas>
<!-- The position of this rectangle is animated using a key frame animation. -->
<Rectangle Name="myRectangle"
Canvas.Top="100"
Canvas.Left="10"
Height="100"
Width="100"
Stroke="Black"
StrokeThickness="5">
<Rectangle.Triggers>
<EventTrigger RoutedEvent="Rectangle.Loaded">
<BeginStoryboard>
<Storyboard RepeatBehavior="Forever">
<!-- Animate Canvas.Left attached property using 3 KeyFrames which animates
the rectangle along a path. This animation repeats indefinitely. -->
<DoubleAnimationUsingKeyFrames
Storyboard.TargetName="myRectangle"
Storyboard.TargetProperty="(Canvas.Left)">
<DoubleAnimationUsingKeyFrames.KeyFrames>
<!-- Using a LinearDoubleKeyFrame, the rectangle moves steadily from its
starting position to 500 over the first 3 seconds. -->
<LinearDoubleKeyFrame Value="500" KeyTime="0:0:3" />
<!-- Using a DiscreteDoubleKeyFrame, the rectangle suddenly appears at 500 after
the fourth second of the animation. -->
<DiscreteDoubleKeyFrame Value="400" KeyTime="0:0:4" />
<!-- Using a SplineDoubleKeyFrame, the rectangle moves back to its starting point. The
animation starts out slowly at first and then speeds up. This KeyFrame ends after the 6th
second. -->
<SplineDoubleKeyFrame KeySpline="0.6,0.0 0.9,0.00" Value="10" KeyTime="0:0:6" />
</DoubleAnimationUsingKeyFrames.KeyFrames>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Rectangle.Triggers>
</Rectangle>
</Canvas>
</Page>
注解
此集合用作 的一部分, DoubleAnimationUsingKeyFrames 以沿一组关键帧对属性值进行动画处理 Double 。
XAML 隐式集合用法
<object>
<object.property>
oneOrMoreDoubleKeyFrameObjectElements
</object.property>
</object>
XAML 值
oneOrMoreDoubleKeyFrameObjectElements
使用对象元素语法声明的一个或多个 DoubleKeyFrame 对象。
构造函数
DoubleKeyFrameCollection() |
初始化 DoubleKeyFrameCollection 类的新实例。 |
属性
CanFreeze |
获取一个值,该值指示是否可将对象变为不可修改。 (继承自 Freezable) |
Count |
获取包含在 DoubleKeyFrameCollection 中的关键帧的数目。 |
DependencyObjectType |
DependencyObjectType获取包装此实例的 CLR 类型的 。 (继承自 DependencyObject) |
Dispatcher |
获取与此 Dispatcher 关联的 DispatcherObject。 (继承自 DispatcherObject) |
Empty | |
IsFixedSize |
获取一个值,该值指示集合大小是否可以更改。 |
IsFrozen |
获取一个值,该值指示对象当前是否可修改。 (继承自 Freezable) |
IsReadOnly |
获取指示集合是否为只读的值。 |
IsSealed |
获取一个值,该值指示此实例当前是否为密封的(只读)。 (继承自 DependencyObject) |
IsSynchronized |
获取一个值,该值指示对集合的访问是否同步(线程安全)。 |
Item[Int32] |
获取或设置指定索引位置处的 DoubleKeyFrame。 |
SyncRoot |
获取可用于同步对集合的访问的对象。 |
方法
事件
Changed |
在修改 Freezable 或其包含的对象时发生。 (继承自 Freezable) |
显式接口实现
ICollection.CopyTo(Array, Int32) |
从特定的 ICollection 索引开始,将 Array 的元素复制到一个 Array 中。 |
IList.Add(Object) |
将某项添加到 IList 中。 |
IList.Contains(Object) |
确定 IList 是否包含特定值。 |
IList.IndexOf(Object) |
确定 IList 中特定项的索引。 |
IList.Insert(Int32, Object) |
在 IList 中的指定索引处插入一个项。 |
IList.Item[Int32] |
获取或设置指定索引处的元素。 |
IList.Remove(Object) |
从 IList 中移除特定对象的第一个匹配项。 |
扩展方法
Cast<TResult>(IEnumerable) |
将 IEnumerable 的元素强制转换为指定的类型。 |
OfType<TResult>(IEnumerable) |
根据指定类型筛选 IEnumerable 的元素。 |
AsParallel(IEnumerable) |
启用查询的并行化。 |
AsQueryable(IEnumerable) |
将 IEnumerable 转换为 IQueryable。 |