getting stylecop undercontrol for UI warnings (#5630)

This commit is contained in:
Clint Rutkas
2020-08-06 11:16:25 -07:00
committed by GitHub
parent ed36447bdf
commit 7b767df0b5
16 changed files with 70 additions and 119 deletions

View File

@@ -2,12 +2,8 @@
// 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 Microsoft.PowerToys.Settings.UI.Lib;
using Microsoft.PowerToys.Settings.UI.ViewModels;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation;
namespace Microsoft.PowerToys.Settings.UI.Views
{
@@ -16,13 +12,13 @@ namespace Microsoft.PowerToys.Settings.UI.Views
/// </summary>
public sealed partial class PowerPreviewPage : Page
{
public PowerPreviewViewModel viewModel { get; set; }
public PowerPreviewViewModel ViewModel { get; set; }
public PowerPreviewPage()
{
this.InitializeComponent();
viewModel = new PowerPreviewViewModel();
this.PowerPreviewSettingsView.DataContext = viewModel;
InitializeComponent();
ViewModel = new PowerPreviewViewModel();
PowerPreviewSettingsView.DataContext = ViewModel;
}
}
}