2020-04-08 01:19:14 +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.ViewModels;
|
2020-03-31 20:32:22 +08:00
|
|
|
|
using Windows.UI.Xaml.Controls;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Views
|
|
|
|
|
{
|
|
|
|
|
public sealed partial class FancyZonesPage : Page
|
|
|
|
|
{
|
|
|
|
|
public FancyZonesViewModel ViewModel { get; } = new FancyZonesViewModel();
|
|
|
|
|
|
|
|
|
|
public FancyZonesPage()
|
|
|
|
|
{
|
2020-04-11 06:22:07 +08:00
|
|
|
|
InitializeComponent();
|
2020-03-31 20:32:22 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|