NumericEdit.UpIcon Property
Gets or sets the custom image for the up icon that increases the editor’s value. This is a bindable property.
Namespace: DevExpress.Maui.Editors
Assembly: DevExpress.Maui.Editors.dll
NuGet Package: DevExpress.Maui.Editors
Declaration
public ImageSource UpIcon { get; set; }
Property Value
Type | Description |
---|---|
ImageSource | The icon image. |
Remarks
Set the IsUpDownIconVisible property to true to display up and down icons in the editor. These icons allow users to increase and decrease the editor’s number by the step value.
To use a custom image for the up or down icon, follow the steps below:
Add the icon file (for example, icon.png) to the Resources/Images folder.
Assign the icon to the
UpIcon
or DownIcon property, for example:<dxe:NumericEdit UpIcon = "icon"/>
The UpIconColor and DownIconColor properties specify the up and down icon colors.
The following settings allow you to assign custom actions to the up and down icons:
Event / Property | Description |
---|---|
Events that occur when a user taps the up and down icons. | |
UpIconCommand / DownIconCommand | Commands executed when a user taps the up and down icons, and |