Skip to main content
A newer version of this page is available. .

ComboBoxEditBase.DropDownIcon Property

Gets or sets the custom drop-down icon image. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public ImageSource DropDownIcon { get; set; }

Property Value

Type Description
ImageSource

The icon image.

Remarks

The drop-down icon is an icon that appears on the right side of the ComboBoxEdit when the drop-down list is collapsed. Use the IsDropDownIconVisible property to change the visibility of the drop-down icon.

DevExpress MAUI ComboBoxEdit - DropDown Icon

To set a custom image for the drop-down icon, follow the steps below:

  1. Add the icon file (for example, icon.svg) to the Resources/Images folder. Make sure that its build action is set to MauiImage.

  2. Assign the icon to the DropDownIcon property:

    <dxe:ComboBox DropDownIcon="icon"/>
    
See Also