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

    The C1ComboBox control comes with various properties to customize appearance and help deliver enhanced user experience. Listed below are some of the properties that can be used to achieve customization in the control's overall look and feel.

    The image given below shows a customized C1ComboBox control.

    The given code illustrates how to set the above properties and render a customized C1ComboBox control. This code example uses the sample created in the Quick Start.
    C#
    Copy Code
    comboBox.SelectedBackgroundColor = Color.Green;comboBox.ButtonColor= Color.Cyan;comboBox.DropDownBorderColor = Color.Blue;comboBox.DropDownMode = DropDownMode.ForceBelow;