Desktop
WPF
The RadGridView for WPF uses the ItemsSource property for binding data. ItemsSource is actually of type System.Object which not only allows you to bind to any data source that implements IEnumerable, but also the ADO.NET DataTable and DataSet. In this post, I am going to demonstrate how you can quickly bind data to the RadGridView for WPF. The task will be to build a car repair shop application which will display all the cars currently in the shop. To get started we need to have some data, so we will use a simple class to store Car information. public class Car { public string Make { get; set; }...