UIElementWeakCollection 类

定义

表示对 UIElement 对象的弱引用的集合。

/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.WinUIContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class UIElementWeakCollection : IIterable<UIElement>, IVector<UIElement>
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public class UIElementWeakCollection : IEnumerable<UIElement>, IList<UIElement>
Public Class UIElementWeakCollection
Implements IEnumerable(Of UIElement), IList(Of UIElement)
继承
Object IInspectable UIElementWeakCollection
属性
实现

注解

此类由 ThemeShadow.Receivers 属性使用。

构造函数

UIElementWeakCollection()

初始化 UIElementWeakCollection 类的新实例。

属性

Size

获取集合的大小 (计数) 。

方法

Append(UIElement)

将新项添加到集合。

Clear()

从集合中移除所有项。

First()

返回集合中项的迭代器。

GetAt(UInt32)

返回位于指定索引处的项。

GetMany(UInt32, UIElement[])

通过迭代器在一次传递中检索多个元素。

GetView()

获取集合中的不可变视图。

IndexOf(UIElement, UInt32)

检索指定项的索引。

InsertAt(UInt32, UIElement)

在指定的索引处插入指定的项。

RemoveAt(UInt32)

删除指定索引处的项。

RemoveAtEnd()

删除集合中的最后一项。

ReplaceAll(UIElement[])

首先清除集合,然后将提供的数组作为新项插入。

SetAt(UInt32, UIElement)

将指定索引处的值设置为指定的 UIElement 值。

适用于

另请参阅