16 lines
346 B
C#
16 lines
346 B
C#
using System.Windows;
|
|
|
|
namespace MaterialModernWPF
|
|
{
|
|
/// <summary>
|
|
/// Interaktionslogik für "App.xaml"
|
|
/// </summary>
|
|
public partial class App : Application
|
|
{
|
|
protected override void OnStartup(StartupEventArgs e)
|
|
{
|
|
base.OnStartup(e);
|
|
new Bootstrapper().Run();
|
|
}
|
|
}
|
|
} |