AppStore.AppDetailsPage.Button_Click C# (CSharp) Method

Button_Click() private method

Executed when the Close Button is tapped in the full screen view of the screenshots. It closes the full-screen view.
private Button_Click ( object sender, RoutedEventArgs e ) : void
sender object Object Sender is a parameter called Sender that contains a reference to the control/object that raised the event.
e Windows.UI.Xaml.RoutedEventArgs RoutedEventArgs e is a parameter called e that contains the event data, see the RoutedEventArgs MSDN page for more information.
return void
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            FullScreen.Visibility = Visibility.Collapsed;
            LayoutRoot.Visibility = Visibility.Visible;
        }