Skip to main content

GridControl Class

The Data Grid control.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public class GridControl :
    GridDataControlBase,
    IAddChild,
    IDataProviderOwner,
    IDataProviderEvents,
    IDataControllerVisualClient,
    ISupportInitialize,
    IDetailElement<DataControlBase>

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…

TemplatesOverview

<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:

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.

Inheritance

See Also