-
Notifications
You must be signed in to change notification settings - Fork 71
/
App.xaml.cs
81 lines (69 loc) · 2.37 KB
/
App.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
using System;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Activation;
using Windows.UI.Core;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation;
namespace UWPClient
{
sealed partial class App : Application
{
public App()
{
this.InitializeComponent();
this.Suspending += OnSuspending;
}
protected override void OnLaunched(LaunchActivatedEventArgs e)
{
Frame rootFrame = Window.Current.Content as Frame;
if (rootFrame == null)
{
rootFrame = new Frame();
rootFrame.NavigationFailed += OnNavigationFailed;
rootFrame.Navigated += RootFrame_Navigated;
Window.Current.Content = rootFrame;
}
SystemNavigationManager.GetForCurrentView().BackRequested += TitleBar_BackRequested;
if (e.PrelaunchActivated == false)
{
if (rootFrame.Content == null)
{
rootFrame.Navigate(typeof(MainPage), e.Arguments);
}
Window.Current.Activate();
}
}
private void RootFrame_Navigated(object sender, NavigationEventArgs e)
{
var backButtonVisibility = AppViewBackButtonVisibility.Collapsed;
if (((Frame)sender).CanGoBack)
{
backButtonVisibility = AppViewBackButtonVisibility.Visible;
}
SystemNavigationManager.GetForCurrentView().AppViewBackButtonVisibility = backButtonVisibility;
}
private void TitleBar_BackRequested(object sender, BackRequestedEventArgs e)
{
var frame = Window.Current.Content as Frame;
if (frame == null)
{
return;
}
if (frame.CanGoBack && e.Handled == false)
{
e.Handled = true;
frame.GoBack();
}
}
private void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
{
throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
}
private void OnSuspending(object sender, SuspendingEventArgs e)
{
var deferral = e.SuspendingOperation.GetDeferral();
deferral.Complete();
}
}
}