Class DataFormGridLayout
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 Microsoft.Maui.Controls.Grid type. For more information see the Microsoft.Maui.Controls.Grid component.
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataFormGridLayout : DataFormLayout
Constructors
DataFormGridLayout()
Declaration
public DataFormGridLayout()
Fields
ColumnCountProperty
Identifies the ColumnCount property.
Declaration
public static readonly BindableProperty ColumnCountProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ColumnSpacingProperty
Identifies the ColumnSpacing property.
Declaration
public static readonly BindableProperty ColumnSpacingProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
RowSpacingProperty
Identifies the RowSpacing property.
Declaration
public static readonly BindableProperty RowSpacingProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
ColumnCount
Gets or sets the number of columns in the grid.
Declaration
public int ColumnCount { get; set; }
Property Value
System.Int32
|
ColumnSpacing
Specifies the spacing in pixels between the columns in the grid.
Declaration
public double ColumnSpacing { get; set; }
Property Value
System.Double
|
RowSpacing
Specifies the spacing in pixels between the rows in the grid.
Declaration
public double RowSpacing { get; set; }
Property Value
System.Double
|