mirror of
https://github.com/soukoku/ntwain.git
synced 2025-04-05 20:59:23 +08:00
23 lines
460 B
C#
23 lines
460 B
C#
using ModernWpf;
|
|
using System.Windows;
|
|
|
|
namespace Sample.WPF
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App : Application
|
|
{
|
|
public App()
|
|
{
|
|
UIHooks.EnableHighDpiSupport();
|
|
}
|
|
|
|
protected override void OnStartup(StartupEventArgs e)
|
|
{
|
|
Theme.ApplyTheme(ThemeColor.Light, Accent.Green);
|
|
base.OnStartup(e);
|
|
}
|
|
}
|
|
}
|