Xamarin.Android | ComponentOne
Controls / Input / ComboBox / Features / Editing
In This Topic
    Editing
    In This Topic

    The C1ComboBox control allows users to input data by either selecting an item from the drop-down or by typing text into the text box. The control, however, is editable by default and allows users to input data through typing.

    To change this default behavior, the C1ComboBox class provides the IsEditable property that can be set to false to disable editing in the text box.

    C#
    Copy Code
    comboBox.IsEditable = false;