Getting Started with the .NET MAUI ComboBox
This guide provides the information you need to start using the Telerik UI for .NET MAUI ComboBox by adding the control to your project.
Prerequisites
Before adding the ComboBox, you need to:
Define the Control
When your .NET MAUI application is setup, you are ready to add a ComboBox control to your page. The following example demonstrates the definition of the RadComboBox
with ItemsSource
set to a static collection as well as bound to property from a ViewModel class.
Using Static Data
Here is the result:
Binding to a Complex Object
1. Define the ComboBox in XAML:
When binding to complex objects, always set the ComboBox
DisplayMemberPath
property.
2. Add the telerik
namespace:
4. Add the ViewModel:
5. Set the binding context after InitializeComponent()
in the page's code behind:
Here is the result:
For the ComboBox Getting Started example, refer to the SDKBrowser Demo Application and navigate to the ComboBox > Getting Started category.