728x90
728x170
var tgr = new TapGestureRecognizer { NumberOfTapsRequired = 1 };
tgr.Tapped += (sender, args) =>
{
// 처리할 내용
};
this.grid.GestureRecognizers.Add(tgr);
- NumberOfTapsRequired : tab수로 2로 설정한 경우 두번 tab 한 경우 이벤트가 발생된다.
위와 같은 형식으로 Image 도 아래처럼 Click 이벤트를 처리할수 있다.
var tgr = new TapGestureRecognizer { NumberOfTapsRequired = 1 };
tgr.Tapped += (sender, args) =>
{
// 처리할 내용
};
this.image.GestureRecognizers.Add(tgr);
xaml 로 처리할때
<Label>
<Label.GestureRecognizers>
<TapGestureRecognizer Tapped="TapGestureRecognizer_Tapped"/>
</Label.GestureRecognizers>
</Label>
728x90
그리드형
'C# > Xamarin Maui' 카테고리의 다른 글
C# (CSharp) ZXing.Net.Mobile.Forms ZXingScannerPage Examples (0) | 2019.09.16 |
---|---|
[Xamarin] BindableProperty 에서 Create<> 에 대한 변경 처리 (0) | 2019.08.07 |
[Xamarin] 64 비트 요구사항 준수 되도록 빌드하기 (0) | 2019.06.27 |
[Xamarin] ERR_CLEARTEXT_NOT_PERMITTED 오류 (0) | 2019.06.27 |
[Xamarin] iOS App 등록하기 3 - 프로젝트에 프로비전 프로필 적용하기 (0) | 2019.06.25 |