Paint.LaunchScreen.TouchesBegan C# (CSharp) Méthode

TouchesBegan() public méthode

Sent when one or more fingers touches the screen.
public TouchesBegan ( NSSet touches, UIEvent evt ) : void
touches NSSet Touches.
evt UIEvent Evt.
Résultat void
        public override void TouchesBegan(NSSet touches, UIEvent evt)
        {
            base.TouchesBegan(touches, evt);

            if (this.AllowUserExit)
            {
                this.OnLaunchScreenComplete(EventArgs.Empty);
            }
        }