다음을 통해 공유


IAttachedCollectionSource.Items 속성

정의

이 IAttachedCollectionSource와 연결된 항목의 컬렉션을 가져오고 필요한 경우 만듭니다.

public:
 property System::Collections::IEnumerable ^ Items { System::Collections::IEnumerable ^ get(); };
public System.Collections.IEnumerable Items { get; }
member this.Items : System.Collections.IEnumerable
Public ReadOnly Property Items As IEnumerable

속성 값

IEnumerable를 반환합니다.

설명

초기 컬렉션이 반환된 후 이 컬렉션이 변경되지 않으면 IEnumerable의 구현을 반환할 수 있습니다. 그러나 이 컬렉션이 시간이 지남에 따라 변경되는 경우 INotifyCollectionChanged(예: ObservableCollection)를 구현하는 컬렉션을 반환할 수 있습니다. INotifyCollectionChanged를 구현하는 컬렉션을 반환하는 경우 컬렉션의 소비자는 컬렉션의 변경 내용을 관찰하고 컬렉션이 수정될 때 컬렉션의 보기를 업데이트합니다.

적용 대상