The WPF Data Grid (GridControl) is a data-aware control designed to display and edit data in different layouts: tabular, treelike, and card. The GridControl allows users to manage large amounts of data (sort, group, filter, and so on).
Get Started
- Lesson 1 - Add a GridControl to a Project
- Lesson 2 - Display and Edit Data
- Lesson 3 - Post Changes to a Database
- Lesson 4 - Manage Data
- Lesson 5 - Display Summaries
#Bind to Data
Refer to the following topic for more information: Bind to Data.
#Views
The GridControl uses Views to display data from a bound data source. You can use the following View types:
- Table View - displays data in a two-dimensional table.
- Card View - displays data as cards. Each card arranges fields vertically in a single column.
- TreeList View - displays data in a tree. Each data record is a tree node.
Views provide options that allow you to specify how to arrange records and fields.
Useful Resources
标签:Data,GridControl,displays,wpf,data,Lesson,View From: https://www.cnblogs.com/chucklu/p/16952248.html