I need to differentiate between CellTap and CellDoubleTap commands.
I registered both commands:
DataGrid.Commands.Add(new CellDoubleTapUserCommand()); DataGrid.Commands.Add(new CellTapUserCommand());
But when I double tap cell, the CellTap command is also fired.
Is there any out of the box solution fo this?