New to Telerik UI for .NET MAUIStart a free 30-day trial

Arranges the items of a RadDataForm in a grid layout. The grid has a pre-defined number of columns with uniform lengths. Starting from the top left corner, the items are arranged horizontally by columns, until the maximum number of columns is reached, then the process continues from the next row. Each item occupies only a single cell of the grid by default. That behavior can be overridden with the ColumnSpan and RowSpan attached properties of the type. For more information see the component.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class DataFormGridLayout : DataFormLayout

Inheritance: objectDataFormLayoutDataFormGridLayout

Constructors

C#
public DataFormGridLayout()

Fields

ColumnCountProperty

BindableProperty

Identifies the ColumnCount property.

C#
public static readonly BindableProperty ColumnCountProperty

ColumnSpacingProperty

BindableProperty

Identifies the ColumnSpacing property.

C#
public static readonly BindableProperty ColumnSpacingProperty

RowSpacingProperty

BindableProperty

Identifies the RowSpacing property.

C#
public static readonly BindableProperty RowSpacingProperty

Properties

Gets or sets the number of columns in the grid.

C#
public int ColumnCount { get; set; }

Specifies the spacing in pixels between the columns in the grid.

C#
public double ColumnSpacing { get; set; }

Specifies the spacing in pixels between the rows in the grid.

C#
public double RowSpacing { get; set; }