You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
672 B
28 lines
672 B
|
2 years ago
|
using Avalonia;
|
||
|
|
using Avalonia.Controls.ApplicationLifetimes;
|
||
|
|
using Avalonia.Markup.Xaml;
|
||
|
|
using speedLight.UI.ViewModels;
|
||
|
|
using speedLight.UI.Views;
|
||
|
|
|
||
|
|
namespace speedLight.UI;
|
||
|
|
|
||
|
|
public partial class App : Application
|
||
|
|
{
|
||
|
|
public override void Initialize()
|
||
|
|
{
|
||
|
|
AvaloniaXamlLoader.Load(this);
|
||
|
|
}
|
||
|
|
|
||
|
|
public override void OnFrameworkInitializationCompleted()
|
||
|
|
{
|
||
|
|
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
||
|
|
{
|
||
|
|
desktop.MainWindow = new MainWindow
|
||
|
|
{
|
||
|
|
DataContext = new MainWindowViewModel(),
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
base.OnFrameworkInitializationCompleted();
|
||
|
|
}
|
||
|
|
}
|