The Xamarin ComboBox control (drop-down) is a text box component that allows users to type a value or choose an option from a list of predefined options. It has several out-of-the-box features, such as data binding, filtering, UI customization, and custom templates.
In editable mode, the Xamarin.Forms ComboBox control allows users to edit in the text box, and suggestions are shown in a drop-down list based on the input. Non-editable mode prevents users from typing and selecting items from the drop-down list.
You can pick from various filtering options such as starts with, contains, and ends with. You can also pick whether to filter with or without case sensitivity.
The Xamarin.Forms ComboBox control supports highlighting the matching text that occurs first.
The Xamarin.Forms ComboBox control supports highlighting the matching text at every occurrence.
The Xamarin.Forms ComboBox control starts offering matches as soon as users start typing. This feature can be changed by setting the number of characters required to start matching.
The Xamarin combobox control has an autofill option that completes the word that users type from the suggestion text, allowing end users to search for items easily. It can suggest a list of filtered items in a pop-up or append the rest of the suggested word in the input area. It can also append the matched item and display the list of filtered items suggested in the pop-up at the same time.
If the Xamarin ComboBox control is at the bottom of the application where the default keyboard would appear, the pop-up can be placed at the top of the screen so that it won’t be covered up.
The input field has been designed to address scenarios such as email address bars. The Xamarin ComboBox control allows users to select multiple items with token representation or simply divide them with a delimiter.
Customizable token representation in the ComboBox control allows users to remove an item with its close button.
Selected items can be divided with desired characters such as “$” for dollar sign separation or “,” for traditional comma separation.
The Xamarin ComboBox control can be thoroughly customized in the following areas.
The Xamarin.Forms ComboBox control accepts a template for pop-ups to change the look and feel of the items.
You can design your own header and footer for the pop-up list using the header and footer view.
The Xamarin.Forms ComboBox control accepts any custom view in place of the text box.
By default, the appearance of the Xamarin ComboBox control is designed to adopt native look and feel of the deployment platform, but it can be completely customized.
The color of pop-ups and text can be customized to fit the application design.
The font size can be customized with pixel precision or with standard options such as small, medium, and large.
You are not limited to use only traditional fonts. You can use custom fonts that suit the application, and render certain iconic fonts too.
The Xamarin.Forms ComboBox control provides additional features that make it more user-friendly.
A customizable clear button is available to clear all the text in a single tap. The button can be enabled or disabled.
Watermark prompts users with an information hint when the search box is not in focus and contains an empty string.
Every aspect of the combobox control has been designed with the MVVM pattern in mind.
All static text can be localized to the required language.
Along with a list of strings, a real-time object can also be used to direct the search member to search and display.
The pop-up list has a provision for placing an icon. A member can also be assigned to form the object.
Easily get started with the Xamarin ComboBox using a few simple lines of C# code as demonstrated below. Also explore our Xamarin ComboBox Example that shows you how to render and configure the Xamarin ComboBox.
<combobox:SfComboBox HeightRequest="40" x:Name="comboBox">
<combobox:SfComboBox.ComboBoxSource>
<ListCollection:List x:TypeArguments="x:String">
<x:String> Item 1 </x:String>
<x:String> Item 2 </x:String>
<x:String> Item 3 </x:String>
</ListCollection:List>
</combobox:SfComboBox.ComboBoxSource>
</combobox:SfComboBox>
public MainPage()
{
InitializeComponent();
List<String> list = new List<String>();
list.Add("Item 1");
list.Add("Item 2");
list.Add("Item 3");
SfComboBox comboBox = new SfComboBox();
comboBox.HeightRequest = 40;
comboBox.ComboBoxSource = resolutionList;
this.Content = comboBox;
}
The Syncfusion Xamarin ComboBox provides the following:
You can find our Xamarin ComboBox demo here.
No, this is a commercial product and requires a paid license. However, a free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue, 5 or fewer developers, and 10 or fewer total employees.
A good place to start would be our comprehensive getting started documentation.
Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion is proud to hold the following industry awards.