Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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

C#
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