Skip to main content

EditBase.CursorColor Property

Gets or sets the editor’s cursor color. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public Color CursorColor { get; set; }

Property Value

Type Description
Color

The editor’s cursor color.

Remarks

The following example specifies the cursor color:

DevExpress Editors for MAUI - Specify cursor color

<dxe:TextEdit
    ...
    CursorColor="Green"/>

On Android, you can also change the touch control color in the colors.xml resource file (/Platforms/Android/Resources/values/colors.xml):

DevExpress Editors for .NET MAUI - Touch control color

<color name="colorAccent">#ff8800</color>
See Also