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

Represents a visual grouping of items in a RadDataForm.

Definition

Constructors

Initializes a new instance of the DataFormGroup class.

C#
public DataFormGroup()

Fields

Identifies the ActualContentStyle property.

C#
public static readonly BindableProperty ActualContentStyleProperty

Identifies the ActualHeaderStyle property.

C#
public static readonly BindableProperty ActualHeaderStyleProperty

ContentStyleProperty

BindableProperty

Identifies the ContentStyle property.

C#
public static readonly BindableProperty ContentStyleProperty

ContentTemplateProperty

BindableProperty

Identifies the ContentTemplate property.

C#
public static readonly BindableProperty ContentTemplateProperty

GroupNameProperty

BindableProperty

Identifies the GroupName property.

C#
public static readonly BindableProperty GroupNameProperty

Identifies the HeaderDisplayOptions property.

C#
public static readonly BindableProperty HeaderDisplayOptionsProperty

Identifies the HeaderImageSource property.

C#
public static readonly BindableProperty HeaderImageSourceProperty

HeaderImageStyleProperty

BindableProperty

Identifies the HeaderImageStyle property.

C#
public static readonly BindableProperty HeaderImageStyleProperty

HeaderLabelStyleProperty

BindableProperty

Identifies the HeaderLabelStyle property.

C#
public static readonly BindableProperty HeaderLabelStyleProperty

HeaderStyleProperty

BindableProperty

Identifies the HeaderStyle property.

C#
public static readonly BindableProperty HeaderStyleProperty

HeaderTemplateProperty

BindableProperty

Identifies the HeaderTemplate property.

C#
public static readonly BindableProperty HeaderTemplateProperty

HeaderTextProperty

BindableProperty

Identifies the HeaderText property.

C#
public static readonly BindableProperty HeaderTextProperty

LayoutDefinitionProperty

BindableProperty

Identifies the LayoutDefinition property.

C#
public static readonly BindableProperty LayoutDefinitionProperty

SpacingProperty

BindableProperty

Identifies the Spacing property.

C#
public static readonly BindableProperty SpacingProperty

Properties

Gets the result from merging the Style specified in the ContentStyle property and the default base Style for that property.

C#
public Style ActualContentStyle { get; }

Gets the result from merging the Style specified in the HeaderStyle property and the default base Style for that property.

C#
public Style ActualHeaderStyle { get; }

Gets or sets the Style of the content view. The target type of this Style is DataFormGroupContentView.

C#
public Style ContentStyle { get; set; }

ContentTemplate

ControlTemplate

Gets or sets the ControlTemplate of the content view. The target type of this ControlTemplate is DataFormGroupContentView.

C#
public ControlTemplate ContentTemplate { get; set; }

Gets or sets the unique name of the group.

C#
public string GroupName { get; set; }

Gets or sets the display options of the header. For more information see the DataFormHeaderDisplayOptions type.

C#
public DataFormHeaderDisplayOptions HeaderDisplayOptions { get; set; }

Gets or sets the ImageSource of the header icon.

C#
public ImageSource HeaderImageSource { get; set; }

Gets or sets the Style of the header icon. The target type of this Style is .

C#
public Style HeaderImageStyle { get; set; }

Gets or sets the Style of the header label. The target type of this Style is .

C#
public Style HeaderLabelStyle { get; set; }

Gets or sets the Style of the header view. The target type of this Style is DataFormGroupHeaderView.

C#
public Style HeaderStyle { get; set; }

HeaderTemplate

ControlTemplate

Gets or sets the ControlTemplate of the header view. The target type of this ControlTemplate is DataFormGroupHeaderView.

C#
public ControlTemplate HeaderTemplate { get; set; }

Gets or sets the text of the header label.

C#
public string HeaderText { get; set; }

Gets a collection of items associated with the current DataFormGroup. For more information see the inheritors of the DataFormItem type.

C#
public IList<DataFormItem> Items { get; }

Gets or sets the layout definition controlling how the individual items are sized and arranged within the DataFormGroup. For more information see the inheritors of the DataFormLayout type.

C#
public DataFormLayout LayoutDefinition { get; set; }

Gets or sets the spacing in pixels between the header view and the content view.

C#
public double Spacing { get; set; }