DataSourceControl.IListSource.ContainsListCollection 属性

定义

指示数据源控件是否与一个或多个数据列表相关联。

property bool System::ComponentModel::IListSource::ContainsListCollection { bool get(); };
bool System.ComponentModel.IListSource.ContainsListCollection { get; }
member this.System.ComponentModel.IListSource.ContainsListCollection : bool
 ReadOnly Property ContainsListCollection As Boolean Implements IListSource.ContainsListCollection

属性值

Boolean

如果 DataSourceControl 与一个或多个 DataSourceView 对象相关联,则为 true;否则为 false

实现

注解

此属性用于确定当前对象是否可以用作一个或多个数据列表的源。 数据源控件将其数据列表封装为 DataSourceView 对象;因此,当与一个或多个 DataSourceView 对象相关联时, DataSourceControl 控件表示列表源对象,并且属性返回 true

此属性调用静态 ListSourceHelper.ContainsListCollection 方法以确定当前数据源控件是否可以用作数据源。 该 ListSourceHelper 类确定该方法是否 GetViewNames 返回视图名称的有效集合。 如果这样做,则此属性返回 true。 如果 GetViewNames 返回 null,即类的默认实现 DataSourceControl ,该方法将 false返回。

适用于

另请参阅