Class AccordionItem
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class AccordionItem : RadLayout
Constructors
AccordionItem()
Fields
BackgroundColorProperty
Identifies theBackgroundColor property.
Declaration
public static readonly BindableProperty BackgroundColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
BackgroundProperty
Identifies theBackground property.
Declaration
public static readonly BindableProperty BackgroundProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
BorderColorProperty
Identifies theBorderColor property.
Declaration
public static readonly BindableProperty BorderColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
BorderThicknessProperty
Identifies theBorderThickness property.
Declaration
public static readonly BindableProperty BorderThicknessProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ContentProperty
Identifies theContent property.
Declaration
public static readonly BindableProperty ContentProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
CornerRadiusProperty
Identifies theCornerRadius property.
Declaration
public static readonly BindableProperty CornerRadiusProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HeaderProperty
Identifies theHeader property.
Declaration
public static readonly BindableProperty HeaderProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HeaderTextProperty
Identifies theHeaderText property.
Declaration
public static readonly BindableProperty HeaderTextProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IsExpandedProperty
Identifies theIsExpanded property.
Declaration
public static readonly BindableProperty IsExpandedProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
Background
Gets or sets the brush that fills the area within the AccordionItem.
Declaration
public Brush Background { get; set; }
Property Value
Microsoft.Maui.Controls.Brush
|
BackgroundColor
Gets or sets the color that fills the area within the AccordionItem.
Declaration
public Color BackgroundColor { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
BorderColor
Gets or sets the color of the item's border.
Declaration
public Color BorderColor { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
BorderThickness
Gets or sets the thickness of the item's border.
Declaration
public Thickness BorderThickness { get; set; }
Property Value
Microsoft.Maui.Thickness
|
Content
Gets or sets the object that appears underneath the Header when expanded.
Declaration
public object Content { get; set; }
Property Value
System.Object
|
CornerRadius
Gets or sets the corner radius of the item's border.
Declaration
public Thickness CornerRadius { get; set; }
Property Value
Microsoft.Maui.Thickness
|
Header
Gets or sets the AccordionItemHeader instance that is visualized as the header for the AccordionItem.
Declaration
public AccordionItemHeader Header { get; set; }
Property Value
AccordionItemHeader
|
HeaderText
Gets or sets the text displayed in the item's header. Setting the Header property will overwrite the HeaderText.
Declaration
public string HeaderText { get; set; }
Property Value
System.String
|
IsExpanded
Gets or sets a value indicating whether the AccordionItem is expanded.
Declaration
public bool IsExpanded { get; set; }
Property Value
System.Boolean
|