Skip to main content
ON

DXButtonBase.Tap Event

Fires when a user taps a DXButtonBase descendant. This event allows you to pass additional event data.

Namespace: DevExpress.Maui.Core

Assembly: DevExpress.Maui.Core.dll

NuGet Package: DevExpress.Maui.Core

Declaration

public event EventHandler<DXTapEventArgs> Tap

Event Data

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

Property Description
Position Gets the position of the tapped item.

Remarks

Handle the Clicked or Tap event to specify an action that occurs when a user taps a DXButtonBase descendant. You can also use the Command property.

See Also