-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml.cs
More file actions
53 lines (46 loc) · 1.85 KB
/
MainWindow.xaml.cs
File metadata and controls
53 lines (46 loc) · 1.85 KB
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
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Controls.Primitives;
using Microsoft.UI.Xaml.Data;
using Microsoft.UI.Xaml.Input;
using Microsoft.UI.Xaml.Media;
using Microsoft.UI.Xaml.Navigation;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.
namespace WinUI3DevTools
{
/// <summary>
/// An empty window that can be used on its own or navigated to within a Frame.
/// </summary>
public sealed partial class MainWindow : Window
{
public MainWindow()
{
this.InitializeComponent();
navigationView.SelectionChanged += NavigationView_SelectionChanged;
navigationView.BackRequested += NavigationView_BackRequested;
contentFrame.Navigated += ContentFrame_Navigated;
}
private void ContentFrame_Navigated(object sender, NavigationEventArgs e)
{
if (!contentFrame.CanGoBack) { navigationView.IsBackEnabled = false; return; }
navigationView.IsBackEnabled = true;
}
private void NavigationView_BackRequested(NavigationView sender, NavigationViewBackRequestedEventArgs args)
{
contentFrame.GoBack();
}
private void NavigationView_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args)
{
if (args.IsSettingsSelected) { contentFrame.Navigate(typeof(Pages.SettingsPage)); return; }
contentFrame.Navigate(Type.GetType("WinUI3DevTools.Pages." + (args.SelectedItem as NavigationViewItem).Tag.ToString()));
}
}
}