Alteridem.WinTouch.GestureListener.OnPressAndTap C# (CSharp) Méthode

OnPressAndTap() private méthode

private OnPressAndTap ( GestureInfo info ) : bool
info GestureInfo
Résultat bool
        private bool OnPressAndTap( GestureInfo info )
        {
            if ( PressAndTap != null )
            {
                var args = new PressAndTapEventArgs( info );
                PressAndTap( this, args );
                return args.Handled;
            }
            return false;
        }