Class AccordionItem
Inherited Members
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class AccordionItem : RadLayout
Constructors
AccordionItem()
Fields
BackgroundColorProperty
Identifies theBackground
Declaration
public static readonly BindableProperty BackgroundColorProperty
Field Value
Microsoft.
|
BackgroundProperty
Identifies theBackground property.
Declaration
public static readonly BindableProperty BackgroundProperty
Field Value
Microsoft.
|
BorderColorProperty
Identifies theBorder
Declaration
public static readonly BindableProperty BorderColorProperty
Field Value
Microsoft.
|
BorderThicknessProperty
Identifies theBorder
Declaration
public static readonly BindableProperty BorderThicknessProperty
Field Value
Microsoft.
|
ContentProperty
Identifies theContent property.
Declaration
public static readonly BindableProperty ContentProperty
Field Value
Microsoft.
|
CornerRadiusProperty
Identifies theCorner
Declaration
public static readonly BindableProperty CornerRadiusProperty
Field Value
Microsoft.
|
HeaderProperty
Identifies theHeader property.
Declaration
public static readonly BindableProperty HeaderProperty
Field Value
Microsoft.
|
HeaderTextProperty
Identifies theHeader
Declaration
public static readonly BindableProperty HeaderTextProperty
Field Value
Microsoft.
|
IsExpandedProperty
Identifies theIs
Declaration
public static readonly BindableProperty IsExpandedProperty
Field Value
Microsoft.
|
Properties
Background
Gets or sets the brush that fills the area within the AccordionItem.
Declaration
public Brush Background { get; set; }
Property Value
Microsoft.
|
BackgroundColor
Gets or sets the color that fills the area within the AccordionItem.
Declaration
public Color BackgroundColor { get; set; }
Property Value
Microsoft.
|
BorderColor
Gets or sets the color of the item's border.
Declaration
public Color BorderColor { get; set; }
Property Value
Microsoft.
|
BorderThickness
Gets or sets the thickness of the item's border.
Declaration
public Thickness BorderThickness { get; set; }
Property Value
Microsoft.
|
Content
Gets or sets the object that appears underneath the Header when expanded.
Declaration
public object Content { get; set; }
Property Value
System.
|
CornerRadius
Gets or sets the corner radius of the item's border.
Declaration
public Thickness CornerRadius { get; set; }
Property Value
Microsoft.
|
Header
Gets or sets the Accordion
Declaration
public AccordionItemHeader Header { get; set; }
Property Value
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.
|
IsExpanded
Gets or sets a value indicating whether the AccordionItem is expanded.
Declaration
public bool IsExpanded { get; set; }
Property Value
System.
|