ToolbarItem Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ToolbarItem() |
Constructs and initializes a new instance of the ToolbarItem class. |
ToolbarItem(String, String, Action, ToolbarItemOrder, Int32) |
Constructs and initializes a new instance of the ToolbarItem class. |
ToolbarItem()
- Source:
- ToolbarItem.cs
- Source:
- ToolbarItem.cs
Constructs and initializes a new instance of the ToolbarItem class.
public:
ToolbarItem();
public ToolbarItem ();
Public Sub New ()
Applies to
ToolbarItem(String, String, Action, ToolbarItemOrder, Int32)
- Source:
- ToolbarItem.cs
- Source:
- ToolbarItem.cs
Constructs and initializes a new instance of the ToolbarItem class.
public ToolbarItem (string name, string icon, Action activated, Microsoft.Maui.Controls.ToolbarItemOrder order = Microsoft.Maui.Controls.ToolbarItemOrder.Default, int priority = 0);
new Microsoft.Maui.Controls.ToolbarItem : string * string * Action * Microsoft.Maui.Controls.ToolbarItemOrder * int -> Microsoft.Maui.Controls.ToolbarItem
Public Sub New (name As String, icon As String, activated As Action, Optional order As ToolbarItemOrder = Microsoft.Maui.Controls.ToolbarItemOrder.Default, Optional priority As Integer = 0)
Parameters
- name
- String
- icon
- String
The icon for the toolbar item.
- activated
- Action
The action to perform when the toolbar item is activated.
- order
- ToolbarItemOrder
The order for the toolbar item.
- priority
- Int32
The toolbar item priority.