SetterBaseCollection 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示继承自 SetterBase 的对象集合。
public ref class SetterBaseCollection sealed : IIterable<SetterBase ^>, IVector<SetterBase ^>
/// [Windows.Foundation.Metadata.Activatable(65536, "Microsoft.UI.Xaml.WinUIContract")]
/// [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 SetterBaseCollection final : IIterable<SetterBase>, IVector<SetterBase>
[Windows.Foundation.Metadata.Activatable(65536, "Microsoft.UI.Xaml.WinUIContract")]
[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 sealed class SetterBaseCollection : IEnumerable<SetterBase>, IList<SetterBase>
Public NotInheritable Class SetterBaseCollection
Implements IEnumerable(Of SetterBase), IList(Of SetterBase)
<Style ...>
oneOrMoreSetters
</Style>
- 继承
- 属性
- 实现
注解
枚举 C 中的集合#
是 SetterBaseCollection
可枚举的,因此可以使用特定于语言的语法(例如 foreach
在 C# 中)枚举集合中的项。 编译器为你执行类型强制转换,你无需显式强制转换为 IEnumerable<SetterBase>
。 如果需要显式强制转换(例如,如果要调用 GetEnumerator),请使用 SetterBase 约束强制转换为 IEnumerable。
构造函数
SetterBaseCollection() |
初始化 SetterBaseCollection 类的新实例。 |
属性
IsSealed |
获取一个值,该值指示集合是否处于只读状态。 |
Size |
获取集合的大小 (计数) 。 |
方法
Append(SetterBase) |
将新项添加到集合。 |
Clear() |
从集合中移除所有项。 |
First() |
返回迭代器,以便对集合中的项进行迭代。 |
GetAt(UInt32) |
返回位于指定索引处的 SetterBase 。 |
GetMany(UInt32, SetterBase[]) |
通过迭代器在一次传递中检索多个元素。 |
GetView() |
获取集合中的不可变视图。 |
IndexOf(SetterBase, UInt32) |
检索指定项的索引。 |
InsertAt(UInt32, SetterBase) |
在指定的索引处插入指定的项。 |
RemoveAt(UInt32) |
删除指定索引处的项。 |
RemoveAtEnd() |
删除集合中的最后一项。 |
ReplaceAll(SetterBase[]) |
最初清除集合,然后将提供的数组作为新项插入。 |
SetAt(UInt32, SetterBase) |
将指定索引处的值设置为指定的 SetterBase 值。 |