コード例 #1
0
		bool OnTouch(IButton? button, AView? v, MotionEvent? e)
		{
			switch (e?.ActionMasked)
			{
				case MotionEventActions.Down:
					button?.Pressed();
					break;
				case MotionEventActions.Up:
					button?.Released();
					break;
			}

			return false;
		}
コード例 #2
0
ファイル: ButtonHandler.Android.cs プロジェクト: sattew/maui
 public void OnClick(IButton?button, AView?v)
 {
     button?.Clicked();
 }