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

DateEdit.DateIconClicked Event

Fires when the date icon is clicked.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

#Declaration

C#
public event HandledEventHandler DateIconClicked

#Event Data

The DateIconClicked event's data class is HandledEventArgs. The following properties provide information specific to this event:

Property Description
Handled Gets or sets a value that indicates whether the event handler has completely handled the event or whether the system should continue its own processing.

#Remarks

The DateIcon property specifies an icon that appears on the right side of the edit box. The default icon is a calendar.

DevExpress MAUI DateEdit - Icon

The editor gets colors for its icons from the applied theme. Use the DateIconColor property to apply a custom color to the date icon. If you need the editor to display this icon in its original color, set the DateIconColor property to {x:Null}:

<dxe:DateEdit ...
                DateIconColor="{x:Null}"/>

The IsDateIconVisible property allows you to hide the date icon.

The following settings allow you to specify the action executed when a user taps the date icon:

Event/Properties

Description

DateIconClicked

Fires when the date icon is clicked.

DateIconCommand

Gets or sets a command executed when a user taps the date icon. This is a bindable property.

DateIconCommandParameter

Gets or sets a parameter passed to the DateIconCommand. This is a bindable property.

See Also