mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
66 lines
2.0 KiB
C#
66 lines
2.0 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 System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using ManagedCommon;
|
|
using Microsoft.PowerToys.Settings.UI.Helpers;
|
|
using Microsoft.PowerToys.Settings.UI.Library;
|
|
using Microsoft.PowerToys.Settings.UI.OOBE.Enums;
|
|
using Microsoft.PowerToys.Settings.UI.OOBE.Views;
|
|
using Microsoft.PowerToys.Settings.UI.ViewModels;
|
|
using Microsoft.UI.Xaml;
|
|
using Microsoft.UI.Xaml.Controls;
|
|
using Windows.Storage.Pickers;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Views
|
|
{
|
|
/// <summary>
|
|
/// Dashboard Settings Page.
|
|
/// </summary>
|
|
public sealed partial class DashboardPage : NavigablePage, IRefreshablePage
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets view model.
|
|
/// </summary>
|
|
public DashboardViewModel ViewModel { get; set; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="DashboardPage"/> class.
|
|
/// Dashboard Settings page constructor.
|
|
/// </summary>
|
|
public DashboardPage()
|
|
{
|
|
InitializeComponent();
|
|
var settingsUtils = new SettingsUtils();
|
|
|
|
ViewModel = new DashboardViewModel(
|
|
SettingsRepository<GeneralSettings>.GetInstance(settingsUtils), ShellPage.SendDefaultIPCMessage);
|
|
DataContext = ViewModel;
|
|
|
|
Loaded += (s, e) => ViewModel.OnPageLoaded();
|
|
}
|
|
|
|
public void RefreshEnabledState()
|
|
{
|
|
ViewModel.ModuleEnabledChangedOnSettingsPage();
|
|
}
|
|
|
|
private void WhatsNewButton_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
if (App.GetOobeWindow() == null)
|
|
{
|
|
App.SetOobeWindow(new OobeWindow(PowerToysModules.WhatsNew));
|
|
}
|
|
else
|
|
{
|
|
App.GetOobeWindow().SetAppWindow(PowerToysModules.WhatsNew);
|
|
}
|
|
|
|
App.GetOobeWindow().Activate();
|
|
}
|
|
}
|
|
}
|