2 instantiations of TapGestureRecognizer
Microsoft.Maui.Controls (2)
IndicatorView\IndicatorStackLayout.cs (1)
23 var tapGestureRecognizer = new TapGestureRecognizer
RadioButton\RadioButton.cs (1)
327 _tapGestureRecognizer = new TapGestureRecognizer();
10 references to TapGestureRecognizer
Microsoft.Maui.Controls (9)
IndicatorView\IndicatorStackLayout.cs (1)
23 var tapGestureRecognizer = new TapGestureRecognizer
Platform\SemanticExtensions.cs (1)
13 if (gesture is TapGestureRecognizer tgr && tgr.NumberOfTapsRequired == 1)
RadioButton\RadioButton.cs (1)
43 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.
Microsoft.Maui.Controls.Compatibility (1)
Android\Cells\ViewCellRenderer.cs (1)
321 return view.GestureRecognizers.Any(t => t is TapGestureRecognizer)