Class ToolbarItem

Definition

Namespace:
ElmSharp
Assembly:
ElmSharp.dll
API Level:
preview

The ToolbarItem is an item of the toolbar.

C#
Copy
public class ToolbarItem : ItemObject
Inheritance
System.Object
ToolbarItem

Properties

View Source

Enabled

Sets or gets the enable of the item.

Declaration
C#
Copy
[Obsolete("Enabled is obsolete as of version v1.1.0-beta-023. Please use IsEnabled instead.")] public bool Enabled { get; set; }
Property Value
Type Description
Boolean
API Level: preview
View Source

Icon

Sets or gets the icon path of the item.

Declaration
C#
Copy
public string Icon { get; set; }
Property Value
Type Description
System.String
API Level: preview
View Source

IsSelected

Sets or gets whether the item is selected.

Declaration
C#
Copy
public bool IsSelected { get; set; }
Property Value
Type Description
Boolean
API Level: preview
View Source

IsSeparator

Sets or gets whether displaying the item as a separator.

Declaration
C#
Copy
public bool IsSeparator { get; set; }
Property Value
Type Description
Boolean
Remarks

Items aren't set as a separator by default. If set as a separator, it displays a separator theme, so it won't display the icons or labels.

API Level: preview
View Source

Text

Sets or gets the text string of the item.

Declaration
C#
Copy
public string Text { get; set; }
Property Value
Type Description
System.String
API Level: preview

Events

View Source

Clicked

Clicked will be triggered when the item is clicked.

Declaration
C#
Copy
public event EventHandler Clicked
Event Type
Type Description
System.EventHandler
API Level: preview
View Source

LongPressed

LongPressed will be triggered when the item is pressed for a long time.

Declaration
C#
Copy
public event EventHandler LongPressed
Event Type
Type Description
System.EventHandler
API Level: preview
View Source

Selected

Selected will be triggered when the item is selected.

Declaration
C#
Copy
public event EventHandler Selected
Event Type
Type Description
System.EventHandler
API Level: preview

Extension Methods