New to Telerik UI for .NET MAUI? Start a free 30-day trial
.NET MAUI ListPickerButton ToolbarItem
Add a list picker toolbar item using the ListPickerButtonToolbarItem
.
The exposed properties are:
ItemsSource
(IList
)—Specifies a collection of items to display in the list.ItemTemplate
(DataTemplate
)—Specifies theDataTemplate
used to generate content for the list items.SelectedItem
(object
)—Specifies the currently selected item in the list.Text
(string
)—Defines the text(target typeLabel
) in the toolbar item. You can display an image next to the text.ImageSource
(Microsoft.Maui.Controls.ImageSource
)—Specifies the source of the image to display in the toolbar item.
Events
The exposed events are:
SelectionChanged
—Raised when the current selection has changed.Clicked
—Raised when the toolbar item is clicked.
Commands
The available commands are:
Command
(ICommand
)—Specifies the command to execute when the toolbar item is clicked.CommandParameter
(object
)—Specifies the parameter of the command, which is executed when the toolbar item is clicked.
Styling
Style the ListPickerButtonToolbarItem
using the following properties:
ItemStyle
(Style
)—Specifies the style applied to the list items. The target type of this style isTelerik.Maui.Controls.ToolbarListItemView
.Style
(Style
)—Specifies the style applied to the list items. The target type of this style isTelerik.Maui.Controls.ListPickerButtonToolbarItemView
. The available properties are:ItemTemplate
(DataTemplate
)—Specifies theDataTemplate
used to generate content for the list items.SelectedItem
(object
)—Specifies the currently selected item in the listItemStyle
(Style
)—Specifies the style applied to the list items. The target type of this style isTelerik.Maui.Controls.ToolbarListItemView
.ItemsSource
(IList
)—Specifies a collection of items to display in the list.- All properties applicable in DropDownButtonToolbarItemView, ButtonToolbarItemView, ToolbarItemView and LabelToolbarItemView.