ToolStripItemCollection 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示 ToolStripItem 对象集合。
public ref class ToolStripItemCollection : System::Windows::Forms::Layout::ArrangedElementCollection, System::Collections::IList
[System.ComponentModel.ListBindable(false)]
public class ToolStripItemCollection : System.Windows.Forms.Layout.ArrangedElementCollection, System.Collections.IList
[<System.ComponentModel.ListBindable(false)>]
type ToolStripItemCollection = class
inherit ArrangedElementCollection
interface IList
interface ICollection
interface IEnumerable
Public Class ToolStripItemCollection
Inherits ArrangedElementCollection
Implements IList
- 继承
- 属性
- 实现
注解
使用 Add、 Remove和 RemoveAt 方法可以在集合中添加和删除单个控件。 还可以使用 AddRange 或 Clear 方法在集合中添加或删除所有控件。
通过将 控件Contains传递到 方法中,ToolStripItem可以确定 是否为集合的成员。 若要获取 集合中 的位置的 ToolStripItem 索引值,请将 控件传递到 方法中 IndexOf 。 可以通过调用 方法将集合复制到数组中 CopyTo 。
构造函数
ToolStripItemCollection(ToolStrip, ToolStripItem[]) |
用指定的容器 ToolStripItemCollection 和指定的 ToolStrip 控件的数组初始化 ToolStripItem 类的新实例。 |
属性
Count |
获取集合中的元素数。 (继承自 ArrangedElementCollection) |
IsReadOnly |
获取一个值,该值指示 ToolStripItemCollection 是否为只读。 |
Item[Int32] |
获取指定索引处的项。 |
Item[String] |
获取具有指定名称的项。 |
方法
显式接口实现
ICollection.IsSynchronized |
有关此成员的说明,请参见 IsSynchronized 属性。 (继承自 ArrangedElementCollection) |
ICollection.SyncRoot |
有关此成员的说明,请参见 SyncRoot 属性。 (继承自 ArrangedElementCollection) |
IList.Add(Object) |
向集合中添加一项。 |
IList.Clear() |
从集合中移除所有项。 |
IList.Contains(Object) |
确定集合中是否包含指定的项。 |
IList.IndexOf(Object) |
确定集合中指定项的位置。 |
IList.Insert(Int32, Object) |
将某个项插入到集合中的指定索引处。 |
IList.IsFixedSize |
获取一个值,该值指示集合是否具有固定大小。 |
IList.Item[Int32] |
检索指定索引处的元素。 |
IList.Remove(Object) |
从集合中移除指定项的第一个匹配项。 |
IList.RemoveAt(Int32) |
移除集合中指定索引处的项。 |
扩展方法
Cast<TResult>(IEnumerable) |
将 IEnumerable 的元素强制转换为指定的类型。 |
OfType<TResult>(IEnumerable) |
根据指定类型筛选 IEnumerable 的元素。 |
AsParallel(IEnumerable) |
启用查询的并行化。 |
AsQueryable(IEnumerable) |
将 IEnumerable 转换为 IQueryable。 |