CollectionViewSource.GetDefaultView(Object) 方法

定义

返回给定源的默认视图。

public:
 static System::ComponentModel::ICollectionView ^ GetDefaultView(System::Object ^ source);
public static System.ComponentModel.ICollectionView GetDefaultView (object source);
static member GetDefaultView : obj -> System.ComponentModel.ICollectionView
Public Shared Function GetDefaultView (source As Object) As ICollectionView

参数

source
Object

对绑定源的对象引用。

返回

ICollectionView

返回 ICollectionView 对象,它是给定源集合的默认视图。

注解

此默认视图绝不与任何 CollectionViewSource 对象关联。

所有集合都具有默认值 CollectionView。 WPF 始终绑定到视图而不是集合。 如果直接绑定到集合,WPF 实际上会绑定到该集合的默认视图。 此默认视图由集合的所有绑定共享,这会导致集合中的所有直接绑定共享一个默认视图的排序、筛选、组和当前项特征。 或者,可以使用类在可扩展应用程序标记语言中创建集合的视图, (XAML) 或代码 CollectionViewSource ,并将控件绑定到该视图。 有关示例,请参阅 如何:使用 XAML 中的视图对数据进行排序和分组

适用于