IXamlDirect.ClearProperty(Object, XamlPropertyIndex) 方法

定义

清除给定 IXamlDirect 上指定属性的值。

本文档适用于 Windows 应用 SDKWinUI 的 WinUI 2 for UWP (,请参阅Windows 应用 SDK命名空间) 。

public:
 void ClearProperty(Platform::Object ^ xamlDirectObject, XamlPropertyIndex propertyIndex);
void ClearProperty(IInspectable const& xamlDirectObject, XamlPropertyIndex const& propertyIndex);
public void ClearProperty(object xamlDirectObject, XamlPropertyIndex propertyIndex);
Public Sub ClearProperty (xamlDirectObject As Object, propertyIndex As XamlPropertyIndex)

参数

xamlDirectObject
Object

Platform::Object

IInspectable

对特定 IXamlDirect 的引用。

propertyIndex
XamlPropertyIndex

要从 XamlPropertyIndex 枚举中受支持的属性列表中清除的属性的引用。

示例

以下示例演示如何通过 XamlDirect API 清除 Border 元素的 MinHeight 属性的值。

XamlDirect xd = XamlDirect.GetDefault();
IXamlDirect border = xd.CreateInstance(XamlTypeIndex.Border);
xd.ClearProperty(border, XamlPropertyIndex.FrameworkElement_MinHeight);
XamlDirect^ xd = XamlDirect::GetDefault();
IXamlDirect^ border = xd->CreateInstance(XamlTypeIndex::Border);
xd->ClearProperty(border, XamlPropertyIndex::FrameworkElement_MinHeight);

适用于