Files
ntwain/samples/Sample.WPF/App.xaml.cs

23 lines
460 B
C#
Raw Normal View History

2016-03-23 18:08:58 -04:00
using ModernWpf;
2014-04-02 19:01:21 -04:00
using System.Windows;
2015-03-15 17:36:17 -04:00
namespace Sample.WPF
2014-04-02 19:01:21 -04:00
{
2016-03-23 18:08:58 -04:00
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
2017-02-13 21:13:49 -05:00
{
public App()
{
2016-03-23 18:08:58 -04:00
UIHooks.EnableHighDpiSupport();
2017-02-13 21:13:49 -05:00
}
protected override void OnStartup(StartupEventArgs e)
{
2016-03-23 18:08:58 -04:00
Theme.ApplyTheme(ThemeColor.Light, Accent.Green);
2017-02-13 21:13:49 -05:00
base.OnStartup(e);
}
}
2014-04-02 19:01:21 -04:00
}