CollectionViewSource.Source 属性

定义

获取或设置要从中创建该视图的集合对象。

public:
 property Platform::Object ^ Source { Platform::Object ^ get(); void set(Platform::Object ^ value); };
IInspectable Source();

void Source(IInspectable value);
public object Source { get; set; }
var object = collectionViewSource.source;
collectionViewSource.source = object;
Public Property Source As Object
<CollectionViewSource Source="bindingReference" .../>

属性值

Object

Platform::Object

IInspectable

要从中创建视图的集合。

注解

设置此属性时,将自动生成视图,除非源集合实现 ICollectionViewFactory。 否则,将通过 CreateView 方法检索视图。 可以通过 View 属性检索 视图

适用于

另请参阅