mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-24 00:48:00 +08:00
47 lines
1.6 KiB
C#
47 lines
1.6 KiB
C#
|
// 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.Library;
|
|||
|
using Microsoft.PowerToys.Settings.UI.OOBE.Enums;
|
|||
|
using Microsoft.PowerToys.Settings.UI.OOBE.ViewModel;
|
|||
|
using Microsoft.PowerToys.Settings.UI.Views;
|
|||
|
using Windows.UI.Xaml.Controls;
|
|||
|
using Windows.UI.Xaml.Navigation;
|
|||
|
|
|||
|
namespace Microsoft.PowerToys.Settings.UI.OOBE.Views
|
|||
|
{
|
|||
|
public sealed partial class OobeAlwaysOnTop : Page
|
|||
|
{
|
|||
|
public OobePowerToysModule ViewModel { get; set; }
|
|||
|
|
|||
|
public OobeAlwaysOnTop()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
ViewModel = new OobePowerToysModule(OobeShellPage.OobeShellHandler.Modules[(int)PowerToysModulesEnum.AlwaysOnTop]);
|
|||
|
DataContext = ViewModel;
|
|||
|
}
|
|||
|
|
|||
|
private void SettingsLaunchButton_Click(object sender, Windows.UI.Xaml.RoutedEventArgs e)
|
|||
|
{
|
|||
|
if (OobeShellPage.OpenMainWindowCallback != null)
|
|||
|
{
|
|||
|
OobeShellPage.OpenMainWindowCallback(typeof(AlwaysOnTopPage));
|
|||
|
}
|
|||
|
|
|||
|
ViewModel.LogOpeningSettingsEvent();
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnNavigatedTo(NavigationEventArgs e)
|
|||
|
{
|
|||
|
ViewModel.LogOpeningModuleEvent();
|
|||
|
HotkeyControl.Keys = SettingsRepository<AlwaysOnTopSettings>.GetInstance(new SettingsUtils()).SettingsConfig.Properties.Hotkey.Value.GetKeysList();
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnNavigatedFrom(NavigationEventArgs e)
|
|||
|
{
|
|||
|
ViewModel.LogClosingModuleEvent();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|