Class StepProgressBarItem
Represents a class which is used to customize the step progress bar item.
Inheritance
Namespace: Syncfusion.Maui.ProgressBar
Assembly: Syncfusion.Maui.ProgressBar.dll
Syntax
public class StepProgressBarItem : Element, IThemeElement
Constructors
StepProgressBarItem()
Initializes a new instance of the StepProgressBarItem class.
Declaration
public StepProgressBarItem()
Fields
ImageSourceProperty
Identifies the ImageSource dependency property.
Declaration
public static readonly BindableProperty ImageSourceProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for ImageSource dependency property. |
PrimaryFormattedTextProperty
Identifies the PrimaryFormattedText dependency property.
Declaration
public static readonly BindableProperty PrimaryFormattedTextProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for PrimaryFormattedText dependency property. |
PrimaryTextProperty
Identifies the PrimaryText dependency property.
Declaration
public static readonly BindableProperty PrimaryTextProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for PrimaryText dependency property. |
SecondaryFormattedTextProperty
Identifies the SecondaryFormattedText dependency property.
Declaration
public static readonly BindableProperty SecondaryFormattedTextProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for SecondaryFormattedText dependency property. |
SecondaryTextProperty
Identifies the SecondaryText dependency property.
Declaration
public static readonly BindableProperty SecondaryTextProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for SecondaryText dependency property. |
ToolTipTextProperty
Identifies the ToolTipText dependency property.
Declaration
public static readonly BindableProperty ToolTipTextProperty
Field Value
Type | Description |
---|---|
Microsoft.Maui.Controls.BindableProperty | The identifier for ToolTipText dependency property. |
Properties
ImageSource
Gets or sets the image source of the step.
Declaration
public ImageSource ImageSource { get; set; }
Property Value
Type |
---|
Microsoft.Maui.Controls.ImageSource |
PrimaryFormattedText
Gets or sets the primary formatted text of the step.
Declaration
public FormattedString PrimaryFormattedText { get; set; }
Property Value
Type |
---|
Microsoft.Maui.Controls.FormattedString |
PrimaryText
Gets or sets the primary text of the step.
Declaration
public string PrimaryText { get; set; }
Property Value
Type |
---|
System.String |
SecondaryFormattedText
Gets or sets the secondary formatted text of the step.
Declaration
public FormattedString SecondaryFormattedText { get; set; }
Property Value
Type |
---|
Microsoft.Maui.Controls.FormattedString |
SecondaryText
Gets or sets the secondary text of the step.
Declaration
public string SecondaryText { get; set; }
Property Value
Type |
---|
System.String |
ToolTipText
Gets or sets the tooltip text of the step.
Declaration
public string ToolTipText { get; set; }
Property Value
Type |
---|
System.String |
Remarks
This property is not applicable when tooltip template is set. It can be binded in the template because the binding context of the tooltip template is the step progress bar item.