IAnimatedVisualSource2 インターフェイス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
AnimatedIcon などの他のオブジェクトで使用できるアニメーション化されたビジュアル。 IAnimatedVisualSource を拡張します
public interface class IAnimatedVisualSource2 : IAnimatedVisualSource
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.XamlContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(440095655, 43262, 22945, 181, 68, 67, 164, 217, 200, 30, 242)]
struct IAnimatedVisualSource2 : IAnimatedVisualSource
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.XamlContract), 65536)]
[Windows.Foundation.Metadata.Guid(440095655, 43262, 22945, 181, 68, 67, 164, 217, 200, 30, 242)]
public interface IAnimatedVisualSource2 : IAnimatedVisualSource
Public Interface IAnimatedVisualSource2
Implements IAnimatedVisualSource
- 派生
- 属性
- 実装
例
次の使用例は、IAnimatedVisualSource2 を実装するオブジェクトを表示およびアニメーション化します。
void AddVisualAndShowStartAnimation(
const winrt::Border& element,
const& winrt::IAnimatedVisualSource2 source,
const winrt::hstring& initialState,
const winrt::hstring& steadyState,
const winrt::Color& themeColor )
{
winrt::IAnimatedVisual animatedVisual = source.TryCreateAnimatedIconVisual();
// Find the playback positions in the animation of the two states
auto const markers = source.Markers();
auto const fromProgress = static_cast<float>(markers.Lookup(initialState));
auto const toProgress = static_cast<float>(markers.Lookup(steadyState));
// Set the theme color as the animated visual's foreground.
source.SetColorProperty("Foreground", themeColor);
// Helper that uses TryCreateAnimatedVisual to add the source to the XAML element tree.
// See IAnimatedVisualSource.TryCreateAnimatedVisual for more information.
AddVisualToElement(element, animatedVisual);
// Helper to play an animation.
// See IAnimatedVisual for more information.
PlaySegment(animatedVisual.RootVisual(), fromProgress, toProgress);
}
注釈
IAnimatedVisualSource.TryCreateAnimatedVisual(Compositor, Object) メソッドを呼び出して、IAnimatedVisual オブジェクトを取得します。 これをIAnimatedVisual
使用すると、ElementCompositionPreview のメソッドを使用して XAML 要素ツリーに追加できる Composition.Visual を取得できます。
プロパティ
Markers |
アニメーション内の再生位置へのマーカー名のマッピングを提供するコレクションを取得します。 |
メソッド
SetColorProperty(String, Color) |
アニメーション化されたビジュアルの色を設定します。 |
TryCreateAnimatedVisual(Compositor, Object) |
アニメーション化されたビジュアルの作成を試みます。 (継承元 IAnimatedVisualSource) |