다음을 통해 공유


TreeView.ItemsSource 속성

정의

TreeView의 콘텐츠를 생성하는 데 사용되는 개체 원본을 가져오거나 설정합니다.

UWP에 해당하는 WinUI 2 API: Microsoft.UI.Xaml.Controls.TreeView.ItemsSource(Windows 앱 SDK WinUI의 경우 Windows 앱 SDK 네임스페이스 참조).

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

void ItemsSource(IInspectable value);
public object ItemsSource { get; set; }
var object = treeView.itemsSource;
treeView.itemsSource = object;
Public Property ItemsSource As Object
<TreeView ItemsSource="bindingDeclaration"/>
-or-
<TreeView ItemsSource="resourceReferenceToSource"/>

속성 값

Object

Platform::Object

IInspectable

TreeView의 콘텐츠를 생성하는 데 사용되는 개체입니다. 기본값은 null입니다.

Windows 요구 사항

디바이스 패밀리
Windows 10, version 1809 (10.0.17763.0에서 도입되었습니다.)
API contract
Windows.Foundation.UniversalApiContract (v7.0에서 도입되었습니다.)

설명

ItemsSource 속성을 로 설정한 개체의 형식은 특정 인터페이스를 구현해야 합니다. 자세한 내용은 ItemsControl.ItemsSource설명 섹션을 참조하세요.

적용 대상