2 instantiations of TapGestureRecognizer
Microsoft.Maui.Controls (2)
IndicatorView\IndicatorStackLayout.cs (1)
23
var tapGestureRecognizer = new
TapGestureRecognizer
RadioButton\RadioButton.cs (1)
330
_tapGestureRecognizer = new
TapGestureRecognizer
();
10 references to TapGestureRecognizer
Microsoft.Maui.Controls (10)
IndicatorView\IndicatorStackLayout.cs (1)
23
var
tapGestureRecognizer = new TapGestureRecognizer
Platform\SemanticExtensions.cs (2)
16
if (gesture is
TapGestureRecognizer
tgr && tgr.NumberOfTapsRequired == 1)
28
if (gesture is
TapGestureRecognizer
)
RadioButton\RadioButton.cs (1)
46
TapGestureRecognizer
_tapGestureRecognizer;
Span.cs (1)
186
case
TapGestureRecognizer
tap:
TapGestureRecognizer.cs (4)
11
public static readonly BindableProperty CommandProperty = BindableProperty.Create(nameof(Command), typeof(ICommand), typeof(
TapGestureRecognizer
), null);
14
public static readonly BindableProperty CommandParameterProperty = BindableProperty.Create(nameof(CommandParameter), typeof(object), typeof(
TapGestureRecognizer
), null);
17
public static readonly BindableProperty NumberOfTapsRequiredProperty = BindableProperty.Create(nameof(NumberOfTapsRequired), typeof(int), typeof(
TapGestureRecognizer
), 1);
20
public static readonly BindableProperty ButtonsProperty = BindableProperty.Create(nameof(Buttons), typeof(ButtonsMask), typeof(
TapGestureRecognizer
), ButtonsMask.Primary);
View\View.cs (1)
174
/// For example, adding a <see cref="
TapGestureRecognizer
"/> to a <see cref="Button"/> may lead to unexpected results.