2020-04-07 10:19:14 -07: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 14:32:22 +02: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-10 15:22:07 -07:00
|
|
|
|
InitializeComponent();
|
2020-03-31 14:32:22 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|