using System.Windows; using ModernWpf; using ModernWpfPlayground.Types; using Prism.Ioc; namespace ModernWpfPlayground { /// /// Interaction logic for App.xaml /// public partial class App { /// protected override void OnStartup(StartupEventArgs e) { base.OnStartup(e); ThemeManager.Current.AccentColor = AccentColors.Green.ToWindowsColor(); } protected override void RegisterTypes(IContainerRegistry containerRegistry) { containerRegistry.Register(); containerRegistry.Register(); } protected override Window CreateShell() { return Container.Resolve(); } } }