Compositor.CreateAnimationPropertyInfo 方法

定义

创建 AnimationPropertyInfo 的实例。

public:
 virtual AnimationPropertyInfo ^ CreateAnimationPropertyInfo() = CreateAnimationPropertyInfo;
AnimationPropertyInfo CreateAnimationPropertyInfo();
public AnimationPropertyInfo CreateAnimationPropertyInfo();
function createAnimationPropertyInfo()
Public Function CreateAnimationPropertyInfo () As AnimationPropertyInfo

返回

返回创建的 AnimationPropertyInfo 对象。

Windows 要求

设备系列
Windows 10, version 2104 (在 10.0.20348.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v12.0 中引入)

示例

// Create an AnimationPropertyInfo object that will hold the mapping between the custom
// animatable property and the corresponding composition object.
AnimationPropertyInfo propertyInfo = _compositor.CreateAnimationPropertyInfo();

animatableObject.PopulatePropertyInfo("CustomOffset", propertyInfo);

// Get the resolved composition object and property for "CustomOffset".
CompositionObject resolvedObject = propertyInfo.GetResolvedCompositionObject();
String resolvedProperty = propertyInfo.GetResolvedCompositionObjectProperty();

适用于