using System.Windows; namespace MaterialModernWPF { /// /// Interaktionslogik für "App.xaml" /// public partial class App : Application { protected override void OnStartup(StartupEventArgs e) { base.OnStartup(e); new Bootstrapper().Run(); } } }