Skip to main content

DataGridView Class

A data grid view.

Namespace: DevExpress.XamarinForms.DataGrid

Assembly: DevExpress.XamarinForms.Grid.dll

NuGet Package: DevExpress.XamarinForms.Grid

Declaration

public class DataGridView :
    View,
    ICustomCellTextProvider,
    IGridDataProvider,
    ICellDataProvider,
    IXtraSerializableLayoutEx,
    IXtraSupportDeserializeCollection,
    IStyledElement

The following members return DataGridView objects:

Remarks

DataGridView is a data-aware control that displays data in a tabular format. To show data in a grid and allow users to manage it, use the DataGridView.ItemsSource property to bind the grid to a data source. Note that unbound mode (add and save records directly to a grid) is not supported and the grid cannot operate without a data source. See the following help topic from the Getting Started section for details on data binding: How to: Bind Grid to Data.

Columns

The grid displays data source fields as columns. It automatically generates columns based on a bound data source, or you can add columns to the grid and associate them with data fields manually. The AutoGenerateColumnsMode property specifies how a grid generates columns or prevents columns from automatically being generated.

The grid stores its columns in the DataGridView.Columns collection. An individual column is a GridColumn class descendant that corresponds to the column’s data type. The following column types are supported:

Column Type

Description

NumberColumn

A grid column used to display and edit numeric values.

TextColumn

A grid column used to display and edit text values.

AutoCompleteColumn

A grid column used to display and edit text values. The column suggests values as a user types in a cell.

ComboBoxColumn

A grid column used to display and edit text values. The column displays a drop-down list that contains available values.

DateColumn

A grid column used to display and edit date values.

TimeColumn

A grid column used to display and edit the time.

CheckBoxColumn

A grid column that displays Boolean values and allows a user to change a cell value by switching between two states.

ImageColumn

A grid column used to display images.

PickerColumn

A grid column that allows a user to edit a cell value by selecting an item from the predefined set.

TemplateColumn

A column type that allows you to define a custom template for column cells.

The GridColumn.FieldName property specifies the data source field to which the column is bound. Each column object provides a set of properties to adjust column settings (e.g., data display format, column width, header caption, content alignment) and manage grid data (sort and group).

The grid allows you to anchor (fix) columns to its left or right edge, so they always remain visible while a user scrolls the view horizontally. To fix a column, set its GridColumn.FixedStyle property to Start or End.

Unbound Columns

In addition to columns bound to data source fields, you can create unbound columns to display data values calculated based on values of other columns. To create an unbound column in the grid, add a column object that corresponds to the type of data the column should display to the DataGridView.Columns collection, and set the following column properties:

  • FieldName - a unique string that does not match any field name in the grid’s underlying data source.
  • UnboundType - the type of data the column should display (Boolean, DateTime, Decimal, Integer, String or Object).
  • UnboundExpression - a formula (string expression) that automatically calculates the column’s values.
    The DataGridView.CustomUnboundColumnData event is another way to populate an unbound column with data. It allows you to implement custom logic of any complexity to provide cell values. Also use this event (not an expression) if you need to save changes that a user made in an unbound column.

Rows

Data rows in the grid display records from the data source. To obtain the number to data rows in the grid, use the DataGridView.RowCount property.

The grid automatically adjusts data row height to display the entire content of a cell. If you specify the DataGridView.RowHeight property, all data rows will have the same height.

Grid Data Rows

When data is grouped, the grid also displays group rows to separate groups of data rows. End users can tap group rows to expand and collapse groups. The DataGridView.GroupRowHeight property changes the height of group rows.

Grid Group Rows

Row Handles

Grid rows are identified by unique integer values - row handles. Each row has a row handle, regardless of whether a row is currently visible (for example, a row might be scrolled off-screen or hidden within a collapsed group).

A row handle depends on the rows’s current location in the grid and changes dynamically when rows are reordered (for example, when data is sorted or grouped).

  • Data row handles are zero-based indexes that correspond to row order from top to bottom.
  • Group row handles are negative values that start with -1. The order matches group row order from top to bottom.

Grid Row Handles

The grid exposes the following methods and properties to obtain row handles:

Method

Description

DataGridView.FindRow

Returns the handle of the first row that matches the specified criteria.

DataGridView.FindRowByValue

Searches for the value in the column and returns the handle of the corresponding row.

DataGridView.GetRowHandle

Returns the handle of the row that corresponds to the specified record in the data source.

DataGridView.GetChildRowHandle

Returns the handle of the row at the specified position within the specified group.

DataGridView.SelectedRowHandle

Gets or sets the selected row handle.

You can pass row handles as parameters to the following methods that operate with rows:

Method

Description

DataGridView.GetCellValue

Gets the value of the specified cell.

DataGridView.SetCellValue

Assigns a value to the specified cell.

DataGridView.GetItem

Returns an object that represents a record in the grid’s underlying data source.

DataGridView.GetSourceRowIndex

Gets the index of the data source record to which the specified row handle corresponds.

DataGridView.DeleteRow

Deletes the specified data row.

DataGridView.ScrollToRow

Scrolls the grid to make the specified row visible.

DataGridView.GetGroupValue

Returns the column’s data value for which the group is created.

DataGridView.GetGroupDisplayValue

Returns a value for which the group is created and which is displayed in a group row.

DataGridView.GetGroupSummaryValue

Returns a summary value calculated against the specified group of rows.

DataGridView.GetChildRowCount

Returns the number of data rows in the group.

DataGridView.IsGroupCollapsed

Indicates whether the specified group row is collapsed.

DataGridView.CollapseGroupRow

Collapses the specified group of rows.

DataGridView.ExpandGroupRow

Expands the specified group of rows.

Cells

The grid displays data values in cells located at the intersection of columns and rows. Use the following methods and properties to obtain and set cell values, and prevent users from changing cell values:

Method

Description

DataGridView.GetCellValue

Gets the value of the specified cell.

DataGridView.GetCellDisplayText

Gets the text displayed within the specified cell.

DataGridView.SetCellValue

Assigns a value to the specified cell.

DataGridView.IsReadOnly

Gets or sets whether the grid is read-only.

Multi-Row Column Layout

You can organize cells that correspond to grid columns into multi-row groups to be shown within data rows, column headers, and data summaries.

  • Simple Layout
    Use the GridColumn.Row property to arrange columns into multiple rows, and the GridColumn.Width property to specify the width for each column. Note that column widths are calculated independently and each row can have a different proportional(*) column width value.

    <dxg:DataGridView.Columns>
        <dxg:TextColumn Width="*"/>
        <dxg:TextColumn Width="*"/>
        <dxg:TextColumn Width="*"/>
        <dxg:TextColumn Width="*" Row="1"/>
        <dxg:TextColumn Width="*" Row="1"/>
    </dxg:DataGridView.Columns>
    
  • Advanced Layout
    This layout type is similar to the Xamarin.Forms Grid layout and allows you to span cells across multiple columns/rows (example).

    1. Enable advanced layout mode and specify layout details - the number of columns and rows, and each column width and row height. To do this, set the grid’s AdvancedColumnLayout property to an AdvancedColumnLayout object with the specified ColumnDefinitions and RowDefinitions collections.

      Note

      In this layout mode, the grid ignores a column’s Width, MinWidth and MaxWidth properties, and uses ColumnDefinitions instead.
      The RowHeight, ColumnHeaderHeight and TotalSummaryHeight properties have a higher priority than RowDefinitions.

    2. Arrange grid columns within the specified layout. To do this, use the following properties of a column object:

      • Column / Row - to define the column position.
      • ColumnSpan / RowSpan - to stretch the column across multiple columns/rows within the layout.
    <dxg:DataGridView.AdvancedColumnLayout>
        <dxg:AdvancedColumnLayout>
            <dxg:AdvancedColumnLayout.ColumnDefinitions>
                <dxg:ColumnDefinition Width="*"/>
                <dxg:ColumnDefinition Width="*"/>
                <dxg:ColumnDefinition Width="*"/>
            </dxg:AdvancedColumnLayout.ColumnDefinitions>
            <dxg:AdvancedColumnLayout.RowDefinitions>
                <dxg:RowDefinition Height="*"/>
                <dxg:RowDefinition Height="*"/>
                <dxg:RowDefinition Height="*"/>
            </dxg:AdvancedColumnLayout.RowDefinitions>
        </dxg:AdvancedColumnLayout>
    <dxg:DataGridView.AdvancedColumnLayout>
    
    <dxg:DataGridView.Columns>
        <dxg:TextColumn RowSpan="2"/>
        <dxg:TextColumn Column="1" ColumnSpan="2"/>
        <dxg:TextColumn Row="1" Column="1"/>
        <dxg:TextColumn Row="1" Column="2" RowSpan="2"/>
        <dxg:TextColumn Row="2" ColumnSpan="2"/>
    </dxg:DataGridView.Columns>
    

    Note

    If you do not define AdvancedColumnLayout but specify the Column and ColumnSpan / RowSpan properties for columns, the grid uses the default advanced column layout calculated as follows:

    • The number of columns is a maximum value assigned to Column or ColumnSpan.
    • The number of rows is a maximum value assigned to Row or RowSpan.
    • Each column width is set to “*”, each row height is “Auto”.

Edit Data

You can allow users to edit cell values with in-place editors or an edit form.

Member

Description

DataGridView.OpenEditor(Int32, String)

Invokes an in-place editor for the specified cell.

DataGridView.CloseEditor

Closes a cell in-place editor.

DataGridView.EditorShowMode

Gets or sets a gesture by which a user can invoke an in-place editor for a data cell.

DataGridView.ShowingEditor

Fires when a cell editor is about to be displayed and allows you to cancel the action.

EditFormPage

The page that allows users to edit grid’s cell values.

DataFormView

An edit form for a data object.

EditRowViewModel

Contains information on a data row that a user currently edits via the edit form.

Drag and Drop Rows

The grid has a set of properties and events that allow you to enable drag-and-drop operations and control them at different stages.

Property

Description

DataGridView.AllowDragDropRows

Gets or sets whether a user is allowed to drag and drop data rows within the grid.

DataGridView.AllowDragDropSortedRows

Gets or sets whether a user is allowed to drag and drop data rows that are sorted or grouped.

DataGridView.RowDragPreviewTemplate

Gets or sets the template that defines the visual representation of the dragged row preview displayed during the drag-and-drop operation.

DataGridView.RowDragPreviewShadowColor

Gets or sets the shadow color of the dragged row preview.

Event

Description

DataGridView.DragRow

Occurs when users touch and hold a data row to drag it.

DataGridView.DragRowOver

Occurs each time a row is over another row when being dragged.

DataGridView.DropRow

Occurs when users drop a row.

DataGridView.CompleteRowDragDrop

Occurs after the drag-and-drop operation is completed.

Input Validation

The grid allows you to validate new values in in-place cell editors or an edit form, indicate errors, and prevent saving invalid data to the data source.

Member

Description

DataGridView.ValidateCell

Occurs after a user changes a cell value in the in-place editor and attempts to select another cell.

DataGridView.ValidationError

Occurs when a value in the in-place cell editor fails validation or when it cannot be saved to a data source.

EditFormPage.ValidateCell

Occurs after a user changes a cell value in the default edit form and moves focus from the editor.

EditFormPage.ValidateForm

Occurs after a user changes the values and attempts to close the edit form.

Sort Data

Users can tap column headers to sort data in the grid.

Member

Description

DataGridView.AllowSort

Specifies whether end users can sort data in the grid.

GridColumn.AllowSort

Specifies whether end users can sort data by the column.

DataGridView.SortMode

Specifies whether the grid allows data sorting by multiple columns or by a single column only.

GridColumn.SortOrder

Gets or sets the column’s sort order.

GridColumn.SortIndex

Gets or sets the column’s position among sorted columns.

GridColumn.SortMode

Specifies whether the grid should sort or group data by column values or display text.

DataGridView.SortBy

Sorts data by the specified column.

DataGridView.ClearSorting

Clears the sorting applied to the grid.

<dxg:DataGridView x:Name="grid" ItemsSource="{Binding Orders}" 
                 SortMode="Multiple">
    <dxg:DataGridView.Columns>
        <dxg:TextColumn FieldName="Product.Name"
                        SortOrder="Descending" SortIndex="0"/>
        <!-- ... -->
        <dxg:NumberColumn FieldName="Quantity" 
                          SortOrder="Ascending" SortIndex="1"/>
        <!-- ... -->
        <dxg:CheckBoxColumn FieldName="Shipped" AllowSort="False"/>
    </dxg:DataGridView.Columns>
</dxg:DataGridView>

Group Data

The grid allows you to group data by a single column.

Groups of data rows (rows that have identical values in a specified column) are separated with group rows that a user can tap to expand or collapse groups. You can also display summary information about groups (e.g., the sum of values, the number of records, the minimum or maximum value) within group rows.

Group Rows

Member

Description

GridColumn.IsGrouped

Gets or sets whether the grid’s data is grouped by the current column.

GridColumn.GroupInterval

Gets or sets how data rows are combined into groups.

DataGridView.GroupBy

Groups data in the grid by the specified column.

DataGridView.GroupsInitiallyExpanded

Gets or sets whether groups of rows should appear expanded or collapsed immediately after the grid’s data is grouped.

DataGridView.ClearGrouping

Ungroups data in the grid.

DataGridView.GroupCount

Gets the number of data row groups within a grid.

DataGridView.ShowGroupedColumns

Gets or sets whether the grid displays a column used to group data.

DataGridView.GetGroupValue

Returns the column’s data value for which the group is created.

DataGridView.GetGroupDisplayValue

Returns a value for which the group is created and which is displayed in a group row.

DataGridView.GetGroupSummaryValue

Returns a summary value calculated against the specified group of rows.

DataGridView.GroupSummaries

Provides access to the collection of group summary items.

DataGridView.GetChildRowCount

Returns the number of data rows in the group.

DataGridView.GetChildRowHandle

Returns the handle of the row at the specified position within the specified group.

DataGridView.GetParentRowHandle

Returns the group row handle that identifies the group to which the specified data row belongs.

DataGridView.IsGroupRow

Checks whether the specified row is a group row.

DataGridView.AllowGroupCollapse

Specifies whether end users can collapse and expand groups of rows.

DataGridView.IsGroupCollapsed

Indicates whether the specified group row is collapsed.

DataGridView.CollapseGroupRow

Collapses the specified group of rows.

DataGridView.CollapseAllGroups

Collapses all groups of rows.

DataGridView.ExpandGroupRow

Expands the specified group of rows.

DataGridView.ExpandAllGroups

Expands all groups of rows.

DataGridView.GroupCollapsing

Occurs before a group of rows is collapsed.

DataGridView.GroupCollapsed

Occurs after a group of rows has been collapsed.

DataGridView.GroupExpanding

Occurs before a group of rows is expanded.

DataGridView.GroupExpanded

Occurs after a group of rows has been expanded.

<dxg:DataGridView x:Name="grid" ItemsSource="{Binding Orders}">
    <dxg:DataGridView.Columns>
         <!-- ... -->
        <dxg:DateColumn FieldName="Date" DisplayFormat="d"  
                        IsGrouped="true" GroupInterval="Date"/>
         <!-- ... -->
    </dxg:DataGridView.Columns>
</dxg:DataGridView>

Filter Data

You can filter data in the grid against single or multiple columns. When a filter is applied, the grid displays a subset of data records that meet the specified criteria.

Member

Description

DataGridView.FilterExpression
DataGridView.FilterString

Use either property to apply a filter to the grid. A filter expression can consist of multiple conditions applied to multiple columns.

DataGridView.ActualFilterString

Gets the string that specifies a filter currently used in the grid.

DataGridView.ClearFilter

Clears the filter applied to data in the grid.

<dxg:DataGridView ItemsSource="{Binding Orders}"  
                  FilterString="Contains([Product.Name], 'Choco')">
    <!-- ... -->
</dxg:DataGridView>

Auto Filter Row

Auto Filter Row allows users to filter data in columns on the fly.

Auto Filter Row

Member

Description

DataGridView.ShowAutoFilterRow

Set this property to true to display the auto filter row in the grid.

GridColumn.AllowAutoFilter

Allows you to disable the auto filter row for an individual column.

GridColumn.AutoFilterValue

Gets or sets the value in the auto filter row for the column.

GridColumn.AutoFilterCondition

Gets or sets the filter condition (equals, contains, for instance) used to compare the value in the auto filter row with column values.

GridColumn.ImmediateUpdateAutoFilter

Gets or sets whether to filter data each time a value in the auto filter row changes or only when a cell in the auto filter row loses focus.

The table below lists properties that allow you to customize the auto filter row’s appearance.

Property

Description

DataGridView.ShowFilterIcon

GridColumn.ShowFilterIcon

Specify whether to show filter icons in the auto filter row’s cells.

FilterIconColor

Specifies the color of filter icons in the auto filter row’s cells.

AutoFilterRowHeight

Specifies the auto filter row’s height.

Data Summaries

The grid allows you to display summary information about groups of rows or specific columns. For example, you can display the sum of values, the number of records, the minimum or maximum value, and more.

Two summary types are supported: total summaries (calculated over all rows in a column and displayed below this column) and group summaries (calculated over all rows in a group and displayed in a group row).

Data Summaries

A grid stores its total and group summaries in the DataGridView.TotalSummaries and DataGridView.GroupSummaries collections.
An individual summary (group or total) is a GridColumnSummary object that contains the following summary settings:

Property

Description

GridColumnSummary.FieldName

Gets or sets the field name of the column for which a summary should be calculated.

GridColumnSummary.Type

Gets or sets the aggregate function type.
There are five predefined aggregate functions for grid data summaries: Sum, Min, Max, Average and Count.

GridColumnSummary.DisplayFormat

Gets or sets the pattern used to format the summary value.

To implement and apply a custom aggregate function, set the GridColumnSummary.Type property to Custom and handle the DataGridView.CalculateCustomSummary event.

<dxg:DataGridView x:Name="grid" ItemsSource="{Binding Orders}" 
                 CalculateCustomSummary="OnCalculateCustomSummary">
    <!-- ... -->
    <dxg:DataGridView.GroupSummaries>
        <dxg:GridColumnSummary FieldName="Total" Type="Max"/>
    </dxg:DataGridView.GroupSummaries>

    <dxg:DataGridView.TotalSummaries>
        <dxg:GridColumnSummary FieldName="Total" Type="Sum" 
                                DisplayFormat="Total: {0:C0}"/>
        <dxg:GridColumnSummary FieldName="Shipped" Type="Custom" 
                                DisplayFormat="Not Shipped: {0}"/>
    </dxg:DataGridView.TotalSummaries>
</dxg:DataGridView>
int count;
// ...

void OnCalculateCustomSummary(object sender, CustomSummaryEventArgs e) {
    if (e.FieldName.ToString () == "Shipped")
        if (e.IsTotalSummary){
            if (e.SummaryProcess == CustomSummaryProcess.Start) {
                count = 0;
            }
            if (e.SummaryProcess == CustomSummaryProcess.Calculate) {
                if (!(bool)e.FieldValue)
                    count++;
                e.TotalValue = count;
            }
        }
}

Pull to Refresh

You can set up the grid so that users can refresh content with a pull-down gesture.

Pull To Refresh

To enable this functionality, set the IsPullToRefreshEnabled property to true. Then, either define a refresh command in a view model and bind it to the PullToRefreshCommand property, or handle the PullToRefresh event. Use the IsRefreshing property to notify the grid that the pull-to-refresh activity is complete and the refresh indicator should be hidden.

Load More

You can set up the grid so that it adds a set of new data items when a user scrolls to the last row.

Load More

To enable this functionality, set the IsLoadMoreEnabled property to true. Then, either define a load-more command in a view model and bind it to the LoadMoreCommand property, or handle the LoadMore event. Use the IsRefreshing property to notify the grid that the load-more activity is complete and the loading indicator should be hidden. The DataGridView.IndicatorColor property allows you to change the indicator color.

Swipe Actions

You can extend the grid’s UI with additional elements (buttons) that appear when a user swipes a data row (from left to right or from right to left) and perform custom actions on tap.

To define a swipe action in the grid, do the following.

  1. Add a SwipeItem object to the DataGridView.StartSwipeItems or DataGridView.EndSwipeItems collection.
  2. Use this object’s properties (for example, Image, Caption, FontColor or BackgroundColor) to customize the button appearance.
    If you add multiple swipe buttons to the grid and need to apply the same appearance settings to all of them, assign a SwipeItemStyle object with the specified properties to DataGridView.SwipeItemStyle.
  3. Handle the SwipeItem.Tap event to assign a custom action to a button.
<dxg:DataGridView x:Name="grid" ItemsSource="{Binding Orders}">
    <!-- ... -->
    <dxg:DataGridView.StartSwipeItems>
            <dxg:SwipeItem Caption="Customer" BackgroundColor="#797bff" Image="person.png" 
                           Tap="Swipe_ShowCustomerInfo" />
    </dxg:DataGridView.StartSwipeItems>
    <dxg:DataGridView.EndSwipeItems>
            <dxg:SwipeItem Caption="Delete" BackgroundColor="#ff3b30" Image="delete.png" 
                           Tap="Swipe_Delete"/>
    </dxg:DataGridView.EndSwipeItems>

    <dxg:DataGridView.SwipeItemStyle>
        <dxg:SwipeItemStyle Width="100"/>
    </dxg:DataGridView.SwipeItemStyle>
</dxg:DataGridView>
using DevExpress.XamarinForms.DataGrid;
// ...

private void Swipe_ShowCustomerInfo(object sender, SwipeItemTapEventArgs e) {
    var customer = (e.Item as Order).Customer;
    string customerName = customer.Name;
    string customerPhone = customer.Phone;
    DisplayAlert("Customer", "Name: " + customerName + "\n" + "Phone: " + customerPhone, "OK");
}

private void Swipe_Delete(object sender, SwipeItemTapEventArgs e) {
    grid.DeleteRow(e.RowHandle);
}

The grid performs the first action from its StartSwipeItems or EndSwipeItems collection in response to a full swipe across the row from left to right or from right to left, respectively. To change this behavior, use the DataGridView.FullSwipeMode property.

The SwipeItemShowing event fires when a swipe item is about to be shown when a user swipes a row from left to right or from right to left, and allows you to cancel the action.

Grid Appearance

The following properties allow you to customize the appearance of grid elements (for example, cells, column headers, summaries):

Property

Description

DataGridView.BorderColor

Gets or sets the grid border color.

DataGridView.BorderThickness

Gets or sets the grid border thickness.

DataGridView.CellStyle

Gets or sets the data cell appearance settings.

DataGridView.GroupRowStyle

Gets or sets the group row appearance settings.

DataGridView.ColumnHeaderStyle

Gets or sets the column header appearance settings.

DataGridView.TotalSummaryStyle

Gets or sets the total summary panel appearance settings.

DataGridView.SwipeItemStyle

Gets or sets the swipe item appearance settings.

You can also create styles for the following target types:

Class

Description

CellStyle

Stores the data cell appearance settings.

GroupRowStyle

Stores the group row appearance settings.

ColumnHeaderStyle

Stores the column header appearance settings.

TotalSummaryStyle

Stores the total summary panel’s appearance settings.

SwipeItemStyle

Stores the swipe item appearance settings.

<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="DataGridExample.MainPage"
             xmlns:dxg="http://schemas.devexpress.com/xamarin/2014/forms/datagrid">
    <dxg:DataGridView x:Name="grid" ItemsSource="{Binding Orders}" 
                      RowHeight="35" TotalSummaryHeight="35">
        <!-- Specify grid columns and total summaries here. -->

        <!--Customize the appearance of grid cells.-->
        <dxg:DataGridView.CellStyle>
            <dxg:CellStyle Padding="5,5,5,5" BackgroundColor="#333333" BorderColor="#515151"
                           FontSize="8" FontColor="White" 
                           SelectionColor="#f78a09" SelectionFontColor="Black"/>
        </dxg:DataGridView.CellStyle>

        <!--Customize the appearance of column headers.-->
        <dxg:DataGridView.ColumnHeaderStyle>
            <dxg:ColumnHeaderStyle BackgroundColor="#333333" BorderColor="#515151" 
                             FontSize="12" FontColor="#929292" FontAttributes="Bold" 
                             HorizontalLineThickness="2"/>
        </dxg:DataGridView.ColumnHeaderStyle>

        <!--Customize the appearance of the total summary panel displayed at the bottom of the grid.-->
        <dxg:DataGridView.TotalSummaryStyle>
            <dxg:TotalSummaryStyle Padding="2,5,2,5" BackgroundColor="#666666" BorderColor="#515151"
                                   FontSize="8" FontColor="#f78a09"/>
        </dxg:DataGridView.TotalSummaryStyle>
    </dxg:DataGridView>
</ContentPage>

Grid Custom Appearance

Templates

You can use the following template properties to define how grid elements are displayed:

Visual Element

Property

Binding Context

Data Cell

TemplateColumn.DisplayTemplate
TemplateColumn.EditTemplate

CellData

Column Header

GridColumn.HeaderContentTemplate
DataGridView.ColumnHeaderContentTemplate

GridColumn

Group Row

DataGridView.GroupRowTemplate

GroupRowData

Group Row Caption

GridColumn.GroupCaptionTemplate
DataGridView.GroupCaptionTemplate

GroupRowData

Group Summary

DataGridView.GroupSummaryTemplate

GroupRowData

Total Summary

GridColumn.TotalSummaryTemplate
DataGridView.TotalSummaryTemplate

TotalSummaryData

Swipe Item

SwipeItem.Template
DataGridView.SwipeItemTemplate

SwipeItemData

This example shows how to define templates for grid column headers. To do this, assign a DataTemplate object to a column’s HeaderContentTemplate property.

Column Header Template

<dxg:DataGridView x:Name = "grid" ItemsSource ="{Binding Employees}">
    <dxg:DataGridView.Columns>
        <dxg:ImageColumn FieldName="Photo">
            <dxg:ImageColumn.HeaderContentTemplate>
                <DataTemplate>
                    <StackLayout Orientation="Horizontal" HorizontalOptions="Center">
                        <Image Source="photo.png" VerticalOptions="Center"/>
                        <Label Text="{Binding FieldName}" VerticalOptions="Center"/>
                    </StackLayout>
                </DataTemplate>
            </dxg:ImageColumn.HeaderContentTemplate>
        </dxg:ImageColumn>
        <dxg:TextColumn FieldName="Name">
            <dxg:TextColumn.HeaderContentTemplate>
                <DataTemplate>
                    <StackLayout Orientation="Horizontal">
                        <Image Source="full_name.png" VerticalOptions="Center"/>
                        <Label Text="Full Name" VerticalOptions="Center"/>
                    </StackLayout>
                </DataTemplate>
            </dxg:TextColumn.HeaderContentTemplate>
        </dxg:TextColumn>
        <dxg:TextColumn FieldName="Position">
            <dxg:TextColumn.HeaderContentTemplate>
                <DataTemplate>
                    <StackLayout Orientation="Horizontal">
                        <Image Source="job_title.png" VerticalOptions="Center"/>
                        <Label Text="Job Title" VerticalOptions="Center"/>
                    </StackLayout>
                </DataTemplate>
            </dxg:TextColumn.HeaderContentTemplate>
        </dxg:TextColumn>
        <dxg:TextColumn FieldName="Phone">
            <dxg:TextColumn.HeaderContentTemplate>
                <DataTemplate>
                    <StackLayout Orientation="Horizontal">
                        <Image Source="phone.png" VerticalOptions="Center"/>
                        <Label Text="{Binding FieldName}" VerticalOptions="Center"/>
                    </StackLayout>
                </DataTemplate>
            </dxg:TextColumn.HeaderContentTemplate>
        </dxg:TextColumn>
        <dxg:DateColumn FieldName="HireDate">
            <dxg:DateColumn.HeaderContentTemplate>
                <DataTemplate>
                    <StackLayout Orientation="Horizontal">
                        <Image Source="hire_date.png" VerticalOptions="Center"/>
                        <Label Text="Hire Date" VerticalOptions="Center"/>
                    </StackLayout>
                </DataTemplate>
            </dxg:DateColumn.HeaderContentTemplate>
        </dxg:DateColumn>
    </dxg:DataGridView.Columns>
</dxg:DataGridView>

View Example

Implements

Inheritance

Object
DataGridView
See Also