mirror of
https://github.com/holgerb83/ModernWpfPlayground.git
synced 2025-04-18 22:43:50 +02:00
20 lines
451 B
C#
20 lines
451 B
C#
using System.Windows;
|
|
using ModernWpf;
|
|
using ModernWpfPlayground.Types;
|
|
|
|
namespace ModernWpfPlayground
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void OnStartup(StartupEventArgs e)
|
|
{
|
|
base.OnStartup(e);
|
|
ThemeManager.Current.AccentColor = AccentColors.Green.ToWindowsColor();
|
|
}
|
|
}
|
|
}
|