Sample tweaks.

This commit is contained in:
Eugene Wang
2017-02-13 21:13:49 -05:00
parent 24bd82670a
commit 8f6e661a61
4 changed files with 14 additions and 9 deletions

View File

@@ -7,12 +7,16 @@ namespace Sample.WPF
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
{
public App()
{
UIHooks.EnableHighDpiSupport();
}
protected override void OnStartup(StartupEventArgs e)
{
Theme.ApplyTheme(ThemeColor.Light, Accent.Green);
base.OnStartup(e);
}
}
base.OnStartup(e);
}
}
}