0 out of 12 rated this helpful - Rate this topic

ItemsControl.ItemsSource property

Gets or sets an object source used to generate the content of the ItemsControl.

Syntax


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


<itemsControl ItemsSource="bindingDeclaration"/>
-or-
<itemsControl ItemsSource="resourceReferenceToSource"/>

XAML Values

bindingDeclaration

A Binding declaration using a {Binding ....} markup extension. For more information, see Binding markup extension.

resourceReferenceToSource

A resource reference to an existing iterable/enumerable items source from a resources collection. The resource reference must specify the desired items source by key.

Property value

Type: System.Object [.NET] | Platform::Object [C++]

The object that is used to generate the content of the ItemsControl. The default is null.

Requirements

Minimum supported client

Windows 8

Minimum supported server

Windows Server 2012

Namespace

Windows.UI.Xaml.Controls
Windows::UI::Xaml::Controls [C++]

Metadata

Windows.winmd

See also

ItemsControl

 

 

Build date: 3/12/2013

© 2013 Microsoft. All rights reserved.