using System.Windows; using System.Windows.Media; using ModernWpf; using Prism.Ioc; namespace ModernWpfPlayground { /// /// Interaction logic for App.xaml /// public partial class App { /// protected override void OnStartup(StartupEventArgs e) { ThemeManager.Current.AccentColor = Color.FromArgb(255, 0, 86, 76); base.OnStartup(e); } protected override void RegisterTypes(IContainerRegistry containerRegistry) { containerRegistry.Register(); containerRegistry.Register(); } protected override Window CreateShell() { return Container.Resolve(); } } }