maui-devexpress-dot-maui-dot-editors-dot-dateedit-9536569f.md
Gets or sets whether the date icon is visible. This is a bindable property.
Namespace : DevExpress.Maui.Editors
Assembly : DevExpress.Maui.Editors.dll
NuGet Package : DevExpress.Maui.Editors
public bool IsDateIconVisible { get; set; }
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if the date icon is visible; otherwise, false.
|
The DateIcon property specifies an icon that appears on the right side of the edit box. The default icon is a calendar.
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
| | --- | --- | |
|
Fires when the date icon is clicked.
| |
|
Gets or sets a command executed when a user taps the date icon. This is a bindable property.
| |
|
Gets or sets a parameter passed to the DateIconCommand. This is a bindable property.
|
See Also