Skip to main content

TimeEdit.IsTimeIconVisible Property

Gets or sets whether the editor displays the time icon. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public bool IsTimeIconVisible { get; set; }

Property Value

Type Default Description
Boolean true

true if the editor displays the time icon; otherwise, false.

Remarks

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

DevExpress MAUI TimeEdit - Icons

The editor gets colors for its icons from the applied theme. Use the TimeIconColor property to apply a custom color to the time icon. If you need the editor to display this icon in its original color, set the TimeIconColor property to {x:Static dxci:DXColor.Default}:

<ContentPage ... 
             xmlns:dxci="clr-namespace:DevExpress.Utils;assembly=DevExpress.Maui.Core">
    <dxe:TimeEdit ...
                  TimeIconColor="{x:Static dxci:DXColor.Default}"/>
</ContentPage>

To hide the time icon, use the IsTimeIconVisible property.

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

Event/Properties

Description

TimeIconClicked

Allows you to assign an additional action to the time icon.

TimeIconCommand

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

TimeIconCommandParameter

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

See Also