CapgeminiSurface.MenuLogo.OnContactTapGesture C# (CSharp) Method

OnContactTapGesture() protected method

protected OnContactTapGesture ( ContactEventArgs e ) : void
e ContactEventArgs
return void
        protected override void OnContactTapGesture(ContactEventArgs e)
        {
            var textFadeOut = (Storyboard)FindResource("TextFadeOut");

            textFadeOut.Begin();

            new ThreadedSoundPlayer(Properties.Resources.Tap).PlaySound();
        }