2021-10-22 20:30:18 +08:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.OOBE.Enums;
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.OOBE.ViewModel;
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Views;
|
2022-04-20 04:00:28 +08:00
|
|
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
|
using Microsoft.UI.Xaml.Navigation;
|
2021-10-22 20:30:18 +08:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.OOBE.Views
|
|
|
|
|
{
|
|
|
|
|
public sealed partial class OobeMouseUtils : Page
|
|
|
|
|
{
|
|
|
|
|
public OobePowerToysModule ViewModel { get; set; }
|
|
|
|
|
|
|
|
|
|
public OobeMouseUtils()
|
|
|
|
|
{
|
|
|
|
|
this.InitializeComponent();
|
2022-04-20 04:00:28 +08:00
|
|
|
|
ViewModel = new OobePowerToysModule(OobeShellPage.OobeShellHandler.Modules[(int)PowerToysModules.MouseUtils]);
|
2021-10-22 20:30:18 +08:00
|
|
|
|
DataContext = ViewModel;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-20 04:00:28 +08:00
|
|
|
|
private void SettingsLaunchButton_Click(object sender, Microsoft.UI.Xaml.RoutedEventArgs e)
|
2021-10-22 20:30:18 +08:00
|
|
|
|
{
|
|
|
|
|
if (OobeShellPage.OpenMainWindowCallback != null)
|
|
|
|
|
{
|
|
|
|
|
OobeShellPage.OpenMainWindowCallback(typeof(MouseUtilsPage));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ViewModel.LogOpeningSettingsEvent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnNavigatedTo(NavigationEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
ViewModel.LogOpeningModuleEvent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnNavigatedFrom(NavigationEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
ViewModel.LogClosingModuleEvent();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|