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

Arranges the items of a RadDataForm in a flex layout. The behavior of the individual items can be controlled further with some of the 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 DataFormFlexLayout : DataFormLayout

Inheritance: objectDataFormLayoutDataFormFlexLayout

Constructors

C#
public DataFormFlexLayout()

Fields

AlignContentProperty

BindableProperty

Identifies the AlignContent property.

C#
public static readonly BindableProperty AlignContentProperty

AlignItemsProperty

BindableProperty

Identifies the AlignItems property.

C#
public static readonly BindableProperty AlignItemsProperty

DirectionProperty

BindableProperty

Identifies the Direction property.

C#
public static readonly BindableProperty DirectionProperty

JustifyContentProperty

BindableProperty

Identifies the JustifyContent property.

C#
public static readonly BindableProperty JustifyContentProperty

PositionProperty

BindableProperty

Identifies the Position property.

C#
public static readonly BindableProperty PositionProperty

WrapProperty

BindableProperty

Identifies the Wrap property.

C#
public static readonly BindableProperty WrapProperty

Properties

AlignContent

FlexAlignContent

Gets or sets a value that controls how multiple rows or columns of items are aligned. For more information see the FlexAlignContent type.

C#
public FlexAlignContent AlignContent { get; set; }

AlignItems

FlexAlignItems

Gets or sets a value that controls how the items are laid out within their row or column. For more information see the FlexAlignItems type.

C#
public FlexAlignItems AlignItems { get; set; }

Direction

FlexDirection

Gets or sets the flex direction of the items within the flex layout. For more information see the FlexDirection type.

C#
public FlexDirection Direction { get; set; }

JustifyContent

FlexJustify

Gets or sets a value that controls how the items are justified when there is extra space. For more information see the FlexJustify type.

C#
public FlexJustify JustifyContent { get; set; }

Position

FlexPosition

Gets or sets a value that controls whether the coordinates of the items are absolute or relative. For more information see the FlexPosition type.

C#
public FlexPosition Position { get; set; }

Wrap

FlexWrap

Gets or sets a value that controls how the items within the flex layout wrap. For more information see the FlexWrap type.

C#
public FlexWrap Wrap { get; set; }