Class DataFormGroup
Represents a visual grouping of items in a RadDataForm.
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataFormGroup : DataFormItem, IRadContentView, IContentView, IPadding, IDataFormView, IView, IElement, ITransform
Constructors
DataFormGroup()
Fields
ActualContentStyleProperty
Identifies the ActualContentStyle property.
Declaration
public static readonly BindableProperty ActualContentStyleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ActualHeaderStyleProperty
Identifies the ActualHeaderStyle property.
Declaration
public static readonly BindableProperty ActualHeaderStyleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ContentStyleProperty
Identifies the ContentStyle property.
Declaration
public static readonly BindableProperty ContentStyleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ContentTemplateProperty
Identifies the ContentTemplate property.
Declaration
public static readonly BindableProperty ContentTemplateProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
GroupNameProperty
Identifies the GroupName property.
Declaration
public static readonly BindableProperty GroupNameProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HeaderDisplayOptionsProperty
Identifies the HeaderDisplayOptions property.
Declaration
public static readonly BindableProperty HeaderDisplayOptionsProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HeaderImageSourceProperty
Identifies the HeaderImageSource property.
Declaration
public static readonly BindableProperty HeaderImageSourceProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HeaderImageStyleProperty
Identifies the HeaderImageStyle property.
Declaration
public static readonly BindableProperty HeaderImageStyleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HeaderLabelStyleProperty
Identifies the HeaderLabelStyle property.
Declaration
public static readonly BindableProperty HeaderLabelStyleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HeaderStyleProperty
Identifies the HeaderStyle property.
Declaration
public static readonly BindableProperty HeaderStyleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HeaderTemplateProperty
Identifies the HeaderTemplate property.
Declaration
public static readonly BindableProperty HeaderTemplateProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HeaderTextProperty
Identifies the HeaderText property.
Declaration
public static readonly BindableProperty HeaderTextProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
LayoutDefinitionProperty
Identifies the LayoutDefinition property.
Declaration
public static readonly BindableProperty LayoutDefinitionProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SpacingProperty
Identifies the Spacing property.
Declaration
public static readonly BindableProperty SpacingProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
ActualContentStyle
Gets the result from merging the Microsoft.Maui.Controls.Style specified in the ContentStyle property and the default base Microsoft.Maui.Controls.Style for that property.
Declaration
public Style ActualContentStyle { get; }
Property Value
Microsoft.Maui.Controls.Style
|
ActualHeaderStyle
Gets the result from merging the Microsoft.Maui.Controls.Style specified in the HeaderStyle property and the default base Microsoft.Maui.Controls.Style for that property.
Declaration
public Style ActualHeaderStyle { get; }
Property Value
Microsoft.Maui.Controls.Style
|
ContentStyle
Gets or sets the Microsoft.Maui.Controls.Style of the content view. The target type of this Microsoft.Maui.Controls.Style is DataFormGroupContentView.
Declaration
public Style ContentStyle { get; set; }
Property Value
Microsoft.Maui.Controls.Style
|
ContentTemplate
Gets or sets the Microsoft.Maui.Controls.ControlTemplate of the content view. The target type of this Microsoft.Maui.Controls.ControlTemplate is DataFormGroupContentView.
Declaration
public ControlTemplate ContentTemplate { get; set; }
Property Value
Microsoft.Maui.Controls.ControlTemplate
|
GroupName
Gets or sets the unique name of the group.
Declaration
public string GroupName { get; set; }
Property Value
System.String
|
HeaderDisplayOptions
Gets or sets the display options of the header. For more information see the DataFormHeaderDisplayOptions type.
Declaration
public DataFormHeaderDisplayOptions HeaderDisplayOptions { get; set; }
Property Value
DataFormHeaderDisplayOptions
|
HeaderImageSource
Gets or sets the Microsoft.Maui.Controls.ImageSource of the header icon.
Declaration
public ImageSource HeaderImageSource { get; set; }
Property Value
Microsoft.Maui.Controls.ImageSource
|
HeaderImageStyle
Gets or sets the Microsoft.Maui.Controls.Style of the header icon. The target type of this Microsoft.Maui.Controls.Style is Microsoft.Maui.Controls.Image.
Declaration
public Style HeaderImageStyle { get; set; }
Property Value
Microsoft.Maui.Controls.Style
|
HeaderLabelStyle
Gets or sets the Microsoft.Maui.Controls.Style of the header label. The target type of this Microsoft.Maui.Controls.Style is Microsoft.Maui.Controls.Label.
Declaration
public Style HeaderLabelStyle { get; set; }
Property Value
Microsoft.Maui.Controls.Style
|
HeaderStyle
Gets or sets the Microsoft.Maui.Controls.Style of the header view. The target type of this Microsoft.Maui.Controls.Style is DataFormGroupHeaderView.
Declaration
public Style HeaderStyle { get; set; }
Property Value
Microsoft.Maui.Controls.Style
|
HeaderTemplate
Gets or sets the Microsoft.Maui.Controls.ControlTemplate of the header view. The target type of this Microsoft.Maui.Controls.ControlTemplate is DataFormGroupHeaderView.
Declaration
public ControlTemplate HeaderTemplate { get; set; }
Property Value
Microsoft.Maui.Controls.ControlTemplate
|
HeaderText
Gets or sets the text of the header label.
Declaration
public string HeaderText { get; set; }
Property Value
System.String
|
Items
Gets a collection of items associated with the current DataFormGroup. For more information see the inheritors of the DataFormItem type.
Declaration
public IList<DataFormItem> Items { get; }
Property Value
System.Collections.Generic.IList<DataFormItem>
|
LayoutDefinition
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.
Declaration
public DataFormLayout LayoutDefinition { get; set; }
Property Value
DataFormLayout
|
Spacing
Gets or sets the spacing in pixels between the header view and the content view.
Declaration
public double Spacing { get; set; }
Property Value
System.Double
|