2024-08-17 23:27:24 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Microsoft.UI.Xaml;
|
2024-07-14 11:24:10 +00:00
|
|
|
|
using Microsoft.UI.Xaml.Controls;
|
2024-08-17 23:27:24 +00:00
|
|
|
|
using Microsoft.UI.Xaml.Controls.Primitives;
|
2024-07-14 11:24:10 +00:00
|
|
|
|
using Microsoft.UI.Xaml.Input;
|
|
|
|
|
|
|
|
|
|
using RustTools.Contracts.Services;
|
|
|
|
|
using RustTools.Helpers;
|
2024-08-17 23:27:24 +00:00
|
|
|
|
using RustTools.muqing;
|
2024-07-14 11:24:10 +00:00
|
|
|
|
using RustTools.ViewModels;
|
|
|
|
|
|
|
|
|
|
using Windows.System;
|
|
|
|
|
|
|
|
|
|
namespace RustTools.Views;
|
|
|
|
|
|
|
|
|
|
// TODO: Update NavigationViewItem titles and icons in ShellPage.xaml.
|
|
|
|
|
public sealed partial class ShellPage : Page
|
|
|
|
|
{
|
|
|
|
|
public ShellViewModel ViewModel
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ShellPage(ShellViewModel viewModel)
|
|
|
|
|
{
|
|
|
|
|
ViewModel = viewModel;
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
ViewModel.NavigationService.Frame = NavigationFrame;
|
2024-08-17 23:27:24 +00:00
|
|
|
|
//ViewModel.NavigationService.Frame.ElementSoundMode.isna = "False";
|
2024-07-14 11:24:10 +00:00
|
|
|
|
ViewModel.NavigationViewService.Initialize(NavigationViewControl);
|
|
|
|
|
|
|
|
|
|
// TODO: Set the title bar icon by updating /Assets/WindowIcon.ico.
|
|
|
|
|
// A custom title bar is required for full window theme and Mica support.
|
|
|
|
|
// https://docs.microsoft.com/windows/apps/develop/title-bar?tabs=winui3#full-customization
|
2024-08-17 06:41:34 +00:00
|
|
|
|
if (App.MainWindow != null)
|
|
|
|
|
{
|
|
|
|
|
App.MainWindow.SetTitleBar(AppTitleBar);
|
|
|
|
|
App.MainWindow.Activated += MainWindow_Activated;
|
|
|
|
|
}
|
2024-08-17 23:27:24 +00:00
|
|
|
|
//AppTitleBarText.Text = "app_name".GetLocalized() + " " + "app_version".GetLocalized();
|
|
|
|
|
//NavigationViewControl.SelectedItem = NavigationViewControl.MenuItems[0];
|
|
|
|
|
//NavigationViewControl.SelectionChanged += NavigationViewControl_SelectionChanged;
|
|
|
|
|
//NavigateToPage("Home");
|
2024-07-14 11:24:10 +00:00
|
|
|
|
}
|
2024-08-17 23:27:24 +00:00
|
|
|
|
private void NavigationViewControl_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args)
|
|
|
|
|
{
|
2024-07-14 11:24:10 +00:00
|
|
|
|
|
2024-08-17 23:27:24 +00:00
|
|
|
|
System.GC.Collect();
|
|
|
|
|
if (args.SelectedItem is NavigationViewItem selectedItem)
|
|
|
|
|
{
|
|
|
|
|
var tag = selectedItem.Tag.ToString();
|
|
|
|
|
gj.sc(tag);
|
|
|
|
|
if (tag != null)
|
|
|
|
|
{
|
|
|
|
|
NavigateToPage(tag);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private void NavigateToPage(string pageTag)
|
|
|
|
|
{
|
|
|
|
|
var pageType = pageTag switch
|
|
|
|
|
{
|
|
|
|
|
"Home" => typeof(HomePage),
|
|
|
|
|
"Concern" => typeof(ConcernPage),
|
|
|
|
|
"Ranking" => typeof(RankingPage),
|
|
|
|
|
"User"=>typeof(UserPage),
|
|
|
|
|
"Module" => typeof(ModulePage),
|
|
|
|
|
"Settings" => typeof(SettingsPage),
|
|
|
|
|
_ => typeof(HomePage),
|
|
|
|
|
};
|
|
|
|
|
NavigationFrame.Navigate(pageType);
|
|
|
|
|
}
|
2024-07-14 11:24:10 +00:00
|
|
|
|
private void OnLoaded(object sender, Microsoft.UI.Xaml.RoutedEventArgs e)
|
|
|
|
|
{
|
2024-08-05 11:38:55 +00:00
|
|
|
|
//gj.sc(RequestedTheme);
|
2024-07-14 11:24:10 +00:00
|
|
|
|
TitleBarHelper.UpdateTitleBar(RequestedTheme);
|
|
|
|
|
|
|
|
|
|
KeyboardAccelerators.Add(BuildKeyboardAccelerator(VirtualKey.Left, VirtualKeyModifiers.Menu));
|
|
|
|
|
KeyboardAccelerators.Add(BuildKeyboardAccelerator(VirtualKey.GoBack));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void MainWindow_Activated(object sender, WindowActivatedEventArgs args)
|
|
|
|
|
{
|
2024-08-17 06:41:34 +00:00
|
|
|
|
App.AppTitlebar = AppTitleBarText;
|
2024-07-14 11:24:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void NavigationViewControl_DisplayModeChanged(NavigationView sender, NavigationViewDisplayModeChangedEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
AppTitleBar.Margin = new Thickness()
|
|
|
|
|
{
|
|
|
|
|
Left = sender.CompactPaneLength * (sender.DisplayMode == NavigationViewDisplayMode.Minimal ? 2 : 1),
|
|
|
|
|
Top = AppTitleBar.Margin.Top,
|
|
|
|
|
Right = AppTitleBar.Margin.Right,
|
|
|
|
|
Bottom = AppTitleBar.Margin.Bottom
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static KeyboardAccelerator BuildKeyboardAccelerator(VirtualKey key, VirtualKeyModifiers? modifiers = null)
|
|
|
|
|
{
|
|
|
|
|
var keyboardAccelerator = new KeyboardAccelerator() { Key = key };
|
|
|
|
|
|
|
|
|
|
if (modifiers.HasValue)
|
|
|
|
|
{
|
|
|
|
|
keyboardAccelerator.Modifiers = modifiers.Value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
keyboardAccelerator.Invoked += OnKeyboardAcceleratorInvoked;
|
|
|
|
|
|
|
|
|
|
return keyboardAccelerator;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void OnKeyboardAcceleratorInvoked(KeyboardAccelerator sender, KeyboardAcceleratorInvokedEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
var navigationService = App.GetService<INavigationService>();
|
|
|
|
|
|
|
|
|
|
var result = navigationService.GoBack();
|
|
|
|
|
|
|
|
|
|
args.Handled = result;
|
|
|
|
|
}
|
2024-08-17 23:27:24 +00:00
|
|
|
|
|
2024-07-14 11:24:10 +00:00
|
|
|
|
}
|