Xceed DataGrid for Silverlight Documentation
ItemsSource Property (DataGridControl)


Gets or sets the data source to which a grid is bound.
Syntax
'Declaration
 
Public Property ItemsSource As Object
'Usage
 
Dim instance As DataGridControl
Dim value As Object
 
instance.ItemsSource = value
 
value = instance.ItemsSource
public object ItemsSource {get; set;}

Property Value

An object representing the data source to which a grid is bound.
Remarks
Xceed DataGrid for Silverlight provides built-in support for WCF Data and RIA Services as well as for any local data source that implements IEnumerable. In order to populate a grid with data items, its ItemsSource property must be bound to a property that exposes the data. Once the data items are loaded into a grid, they can be edited, grouped, sorted, and filtered.
Example
For examples on how to bind to various data sources, refer to the Providing Data topic.
Requirements

Target Platforms: Windows 7, Windows Vista, Windows XP SP3, Windows Server 2008 family

See Also

Reference

DataGridControl Class
DataGridControl Members

Getting Started

Creating Your First DataGrid Project in Visual Studio
Creating Your First DataGrid Project in Expression Blend

Manipulating Data

Providing Data

Send Feedback