EditBase.StartIconColor Property
Gets or sets the color of a custom icon displayed at the editor’s near edge. This is a bindable property.
Namespace: DevExpress.Maui.Editors
Assembly: DevExpress.Maui.Editors.dll
NuGet Package: DevExpress.Maui.Editors
Declaration
public Color StartIconColor { get; set; }
Property Value
Type | Description |
---|---|
Color | The icon color. |
Remarks
The editor gets the color for its start icon from the applied theme. Use the StartIconColor property to apply a custom color to the start icon. If you want to use the default color, set the StartIconColor
property to {x:Null}
:
<dxe:TextEdit ...
StartIconColor="{x:Null}"/>
To specify one color for all icons of the editor, use the IconColor and DisabledIconColor properties.
See Also