New settings pages (XAML) and improvements to ShellPage. Added more styles for typical margins and textblocks (#1735)

This commit is contained in:
Niels Laute
2020-03-27 16:58:53 +01:00
committed by Lavius Motileng
parent 4243feaf37
commit a84be2ba60
17 changed files with 456 additions and 41 deletions

View File

@@ -0,0 +1,13 @@
using System;
using Microsoft.PowerToys.Settings.UI.Helpers;
namespace Microsoft.PowerToys.Settings.UI.ViewModels
{
public class PowerLauncherViewModel : Observable
{
public PowerLauncherViewModel()
{
}
}
}

View File

@@ -0,0 +1,13 @@
using System;
using Microsoft.PowerToys.Settings.UI.Helpers;
namespace Microsoft.PowerToys.Settings.UI.ViewModels
{
public class PowerRenameViewModel : Observable
{
public PowerRenameViewModel()
{
}
}
}

View File

@@ -0,0 +1,12 @@
using System;
using Microsoft.PowerToys.Settings.UI.Helpers;
namespace Microsoft.PowerToys.Settings.UI.ViewModels
{
public class ShortcutGuideViewModel : Observable
{
public ShortcutGuideViewModel()
{
}
}
}