.NET MAUI TemplatedPicker Data Binding
The TemplatedPicker for .NET MAUI provides means for creating a fully-customizable picker control. You can place any list of items inside the popup for the user to choose from and show the selected value in a defined format.
This article describes the TemplatedPicker properties that are used for binding and presenting the selected value, which comes from the selector data source. The selector can be any control shows a list of items user can choose from, for example, CollectionView
, RadSpinner
, and so on.
DisplayMemberPath
—Specifies a property of the source object to serve as the visual representation of the selected item.DisplayStringFormat
—Enables you to choose what text to display when an item from the selector was picked through theDisplayStringFormat
TemplatedPicker property.SelectedValue
—Used when you have linked your TemplatedPicker to a data source, and you want to return a value of type object different from the one which is displayed.
Clear Button
You can enable a Clear button which can be used to quickly remove the selected value. To enable the button, set IsClearButtonVisible
property of the TemplatedPicker:
Example
The example below uses two RadSpinner
controls inside the SelectorTemplate
of the TemplatedPicker which present cascading lists of items (the items shown in the second spinner depend on the selected value from the first spinner). Through the SelectedValue
and DisplayMemberPath
properties you can define how the selection from the spinners is visualized in the picker when the popup is closed.
1. Define the control:
2. Define the SelectorTemplate
:
3. Define the HeaderTemplate
:
4. Add the following data item for the first spinner:
5. Add the following data item for the second spinner:
6. Define the ViewModel
:
7. Set the defined LocationViewModel
as a BindingContext
of the page:
8. In addition to this, you need to add the following namespace:
The following image shows the end result.