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
- 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
- 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
The name to use for this toolbar item.
- icon
- String
The icon to use for this toolbar item.
- activated
- Action
The action to invoke when this toolbar item is activated.
- order
- ToolbarItemOrder
Determines if this toolbar item is visible on the Toolbar directly or in a collapsed menu.
- priority
- Int32
Determines the order of this toolbar item.
Exceptions
Thrown when activated
is null
.