IBindingListView 接口

定义

通过提供高级排序和筛选功能来扩展 IBindingList 接口。

public interface class IBindingListView : System::Collections::IList, System::ComponentModel::IBindingList
public interface class IBindingListView : System::ComponentModel::IBindingList
public interface IBindingListView : System.Collections.IList, System.ComponentModel.IBindingList
public interface IBindingListView : System.ComponentModel.IBindingList
type IBindingListView = interface
    interface ICollection
    interface IEnumerable
    interface IList
    interface IBindingList
type IBindingListView = interface
    interface IBindingList
    interface IList
    interface ICollection
    interface IEnumerable
Public Interface IBindingListView
Implements IBindingList, IList
Public Interface IBindingListView
Implements IBindingList
派生
实现

注解

IBindingListView使用 接口,可以将高级排序作为一组属性描述符方向对来实现。 将筛选实现为要由数据源实现解释的字符串。 接口 IBindingListViewBindingSource 类实现。

属性

AllowEdit

获取是否可更新列表中的项。

(继承自 IBindingList)
AllowNew

获取是否可以使用 AddNew() 向列表中添加项。

(继承自 IBindingList)
AllowRemove

获取是否可以使用 Remove(Object)RemoveAt(Int32) 从列表中移除项。

(继承自 IBindingList)
Count

获取 ICollection 中包含的元素数。

(继承自 ICollection)
Filter

获取或设置筛选器,以用于从数据源返回的项的集合中排除项。

IsFixedSize

获取一个值,该值指示 IList 是否具有固定大小。

(继承自 IList)
IsReadOnly

获取一个值,该值指示 IList 是否为只读。

(继承自 IList)
IsSorted

获取是否对列表中的项进行排序。

(继承自 IBindingList)
IsSynchronized

获取一个值,该值指示是否同步对 ICollection 的访问(线程安全)。

(继承自 ICollection)
Item[Int32]

获取或设置指定索引处的元素。

(继承自 IList)
SortDescriptions

获取当前应用于数据源的排序说明的集合。

SortDirection

获取排序的方向。

(继承自 IBindingList)
SortProperty

获取正在用于排序的 PropertyDescriptor

(继承自 IBindingList)
SupportsAdvancedSorting

获取一个值,指示数据源是否支持高级排序。

SupportsChangeNotification

获取当列表更改或列表中的项更改时是否引发 ListChanged 事件。

(继承自 IBindingList)
SupportsFiltering

获取一个值,该值指示数据源是否支持筛选。

SupportsSearching

获取列表是否支持使用 Find(PropertyDescriptor, Object) 方法进行搜索。

(继承自 IBindingList)
SupportsSorting

获取列表是否支持排序。

(继承自 IBindingList)
SyncRoot

获取可用于同步对 ICollection 的访问的对象。

(继承自 ICollection)

方法

Add(Object)

将某项添加到 IList 中。

(继承自 IList)
AddIndex(PropertyDescriptor)

PropertyDescriptor 添加到用于搜索的索引。

(继承自 IBindingList)
AddNew()

将新项添加到列表。

(继承自 IBindingList)
ApplySort(ListSortDescriptionCollection)

根据给定的 ListSortDescriptionCollection 对数据源进行排序。

ApplySort(PropertyDescriptor, ListSortDirection)

根据 PropertyDescriptorListSortDirection 对列表进行排序。

(继承自 IBindingList)
Clear()

IList 中移除所有项。

(继承自 IList)
Contains(Object)

确定 IList 是否包含特定值。

(继承自 IList)
CopyTo(Array, Int32)

从特定的 ICollection 索引开始,将 Array 的元素复制到一个 Array 中。

(继承自 ICollection)
Find(PropertyDescriptor, Object)

返回具有给定 PropertyDescriptor 的行的索引。

(继承自 IBindingList)
GetEnumerator()

返回循环访问集合的枚举数。

(继承自 IEnumerable)
IndexOf(Object)

确定 IList 中特定项的索引。

(继承自 IList)
Insert(Int32, Object)

IList 中的指定索引处插入一个项。

(继承自 IList)
Remove(Object)

IList 中移除特定对象的第一个匹配项。

(继承自 IList)
RemoveAt(Int32)

移除位于指定索引处的 IList 项。

(继承自 IList)
RemoveFilter()

移除应用于数据源的当前筛选器。

RemoveIndex(PropertyDescriptor)

PropertyDescriptor 从用于搜索的索引中移除。

(继承自 IBindingList)
RemoveSort()

使用 ApplySort(PropertyDescriptor, ListSortDirection) 移除任何已应用的排序。

(继承自 IBindingList)

事件

ListChanged

当列表或列表中的项更改时发生。

(继承自 IBindingList)

扩展方法

Cast<TResult>(IEnumerable)

IEnumerable 的元素强制转换为指定的类型。

OfType<TResult>(IEnumerable)

根据指定类型筛选 IEnumerable 的元素。

AsParallel(IEnumerable)

启用查询的并行化。

AsQueryable(IEnumerable)

IEnumerable 转换为 IQueryable

适用于