コード例 #1
0
ファイル: ViewController.cs プロジェクト: chamons/ArenaLS
        public override void RightMouseDown(NSEvent theEvent)
        {
            CGPoint p = theEvent.LocationInWindow;

            ClickArgs.Position = new SKPointI((int)p.X, (int)View.Frame.Height - (int)p.Y);
            OnDetailPress?.Invoke(this, ClickArgs);
        }
コード例 #2
0
 public override void RightMouseDown(NSEvent theEvent)
 {
     ClickArgs.Position = GetPositionFromEvent(theEvent);
     OnDetailPress?.Invoke(this, ClickArgs);
 }