.NET MAUI ComboBox Overview

Updated on Jun 17, 2026

The Telerik UI for .NET MAUI ComboBox enables users to select one or more items from a dropdown list. It offers various features, including search functionality, options for single and multiple selections, a flexible styling API, and customizable dropdowns, among others.

ninja-iconThe ComboBox is part of Telerik UI for .NET MAUI, the most comprehensive UI suite for .NET MAUI! To try it out, sign up for a free 30-day trial and kickstart your cross-platform app development today.Start Free Trial

Use the ComboBox when you want users to choose from a predefined list and optionally search, filter, or select multiple values in the same input area.

.NET MAUI ComboBox Overview

Key Features of the .NET MAUI ComboBox

  • Editable and non-editable modes—The ComboBox supports both editable and non-editable states. When the control is editable, users can type and search.
  • Searching support—The ComboBox supports Contains, StartsWith, ContainsCaseSensitive, and StartsWithCaseSensitive search modes.
  • Single and multiple selection—Use the SelectionMode property to let users select one item or multiple items.
  • Complex object binding—Use DisplayMemberPath to specify which property from a business object is displayed in the control.
  • Filtering support—Users can refine the visible results while they type in the input field.
  • Search highlighting—The ComboBox highlights the matching text in the dropdown after searching.
  • Placeholder support—Show guidance text when the input is empty or the selected item is cleared.
  • Header and footer templates—Add custom content above and below the dropdown list through HeaderTemplate and FooterTemplate.
  • Clear button visibility—Control whether users can clear the selection through the built-in clear button.
  • Customizable dropdown—Control the dropdown width, height, open state, and close-on-selection behavior.
  • Keyboard type—Choose the mobile keyboard layout through the Keyboard property.
  • Keyboard navigation—Navigate, open, and close the dropdown with the keyboard on WinUI and MacCatalyst.
  • UI virtualization support—Display large item collections efficiently because the control reuses existing visual items while the dropdown is scrolled.
  • Templates—Customize ItemTemplate, SelectedItemTemplate, TokenTemplate, and ShowMoreTemplate.
  • Command support—Use ClearSelectionCommand and SelectAllCommand from external UI.
  • Flexible styling API—Customize colors, borders, buttons, dropdown appearance, and text presentation.

Theme-Aware Styling and AppThemeBinding

If you are looking for app theme binding support, use the ComboBox styling properties together with the standard .NET MAUI AppThemeBinding markup extension or with Telerik theme resources.

For example, you can apply theme-aware values to properties such as BackgroundColor, BorderColor, TextColor, PlaceholderColor, and dropdown styling properties. For control-specific styling options, see Styling. For app-wide theme resources and runtime theme switching, see Theming Overview.

Use the ComboBox styling article when you want to style only this control. Use the theming article when you want the ComboBox appearance to follow your app theme together with other Telerik controls.

Next Steps

See Also