private void OnDismissTouchAreaTapped(object sender, TappedRoutedEventArgs e)
 {
     PickedPlacesPane.Visibility = Visibility.Collapsed;
     ContentFrame
     .Fade(1.0f)
     .Scale(scaleX: 1.0f, scaleY: 1.0f, centerX: (float)ContentFrame.ActualWidth / 2, centerY: (float)ContentFrame.ActualHeight / 2)
     .Start();
 }
 private void OnPlaceStoreClick(object sender, RoutedEventArgs e)
 {
     PickedPlacesPane.Visibility = Visibility.Visible;
     ContentFrame
     .Fade(0.5f)
     .Scale(scaleX: 0.95f, scaleY: 0.95f, centerX: (float)ContentFrame.ActualWidth / 2, centerY: (float)ContentFrame.ActualHeight / 2)
     .Start();
 }