GridControl Class
The Data Grid control.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.1.dll
NuGet Package: DevExpress.Wpf.Grid.Core
#Declaration
public class GridControl :
GridDataControlBase,
IAddChild,
IDataProviderOwner,
IDataProviderEvents,
IDataControllerVisualClient,
ISupportInitialize,
IDetailElement<DataControlBase>
#Related API Members
The following members return GridControl objects:
#Remarks
The GridControl is a data-bound control that provides a two-dimensional representation of data from a data source. The GridControl provides tabular, card, and tree (hierarchical) display formats. The GridControl supports a wide array of cell editors, full end-user customization options, advanced data binding and management, layout persistence, fixed columns, validation, UI virtualization, extended record scrolling and much more…
<dxg:GridControl AutoGenerateColumns="AddNew"
EnableSmartColumnsGeneration="True"
ItemsSource="{Binding Customers}">
<dxg:GridControl.View>
<dxg:TableView AllowPerPixelScrolling="True" ShowFixedTotalSummary="True"/>
</dxg:GridControl.View>
</dxg:GridControl>
Refer to the following topics for information on key features:
- Binding to Data Overview
- Data Editing and Validation
- Grouping
- Selection
- Filtering and Searching
- Sorting
- Data Summaries
- Conditional Formatting
- Paging and Scrolling
- Appearance Customization
- Printing
- Design-Time Features
#Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the GridControl class.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.