CompositionObject.ImplicitAnimations プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
このオブジェクトにアタッチされた暗黙的なアニメーションのコレクション。
public:
property ImplicitAnimationCollection ^ ImplicitAnimations { ImplicitAnimationCollection ^ get(); void set(ImplicitAnimationCollection ^ value); };
ImplicitAnimationCollection ImplicitAnimations();
void ImplicitAnimations(ImplicitAnimationCollection value);
public ImplicitAnimationCollection ImplicitAnimations { get; set; }
var implicitAnimationCollection = compositionObject.implicitAnimations;
compositionObject.implicitAnimations = implicitAnimationCollection;
Public Property ImplicitAnimations As ImplicitAnimationCollection
プロパティ値
このオブジェクトにアタッチされた暗黙的なアニメーションのコレクション。
Windows の要件
デバイス ファミリ |
Windows 10 Anniversary Edition (10.0.14393.0 で導入)
|
API contract |
Windows.Foundation.UniversalApiContract (v3.0 で導入)
|
例
class PropertyAnimation
{
PropertyAnimation(Compositor compositor, SpriteVisual heroVisual, SpriteVisual listVisual)
{
// Define ImplicitAnimationCollection
ImplicitAnimationCollection implicitAnimations = compositor.CreateImplicitAnimationCollection();
// Trigger animation when the “Offset” property changes.
implicitAnimations["Offset"] = CreateAnimation(compositor);
// Assign ImplicitAnimations to a visual. Unlike Visual.Children,
// ImplicitAnimations can be shared by multiple visuals so that they
// share the same implicit animation behavior (same as Visual.Clip).
heroVisual.ImplicitAnimations = implicitAnimations;
// ImplicitAnimations can be shared among visuals
listVisual.ImplicitAnimations = implicitAnimations;
listVisual.Offset = new Vector3(20f, 20f, 20f);
}
Vector3KeyFrameAnimation CreateAnimation(Compositor compositor)
{
Vector3KeyFrameAnimation animation = compositor.CreateVector3KeyFrameAnimation();
animation.InsertExpressionKeyFrame(0f, "this.StartingValue");
animation.InsertExpressionKeyFrame(1f, "this.FinalValue");
animation.Target = “Offset”;
animation.Duration = TimeSpan.FromSeconds(0.25);
return animation;
}
}