93 lines
3.1 KiB
C#
93 lines
3.1 KiB
C#
using System;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Controls.ApplicationLifetimes;
|
|
using Avalonia.Data.Core.Plugins;
|
|
using Avalonia.Markup.Xaml;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Nebula.Launcher.MessageBox;
|
|
using Nebula.Launcher.ViewModels.ContentView;
|
|
using Nebula.Launcher.Views;
|
|
using Nebula.Shared;
|
|
|
|
namespace Nebula.Launcher;
|
|
|
|
public class App : Application
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
}
|
|
|
|
public override void OnFrameworkInitializationCompleted()
|
|
{
|
|
if (!Program.IsNewInstance)
|
|
{
|
|
IMessageContainerProvider? provider = null;
|
|
switch (ApplicationLifetime)
|
|
{
|
|
case IClassicDesktopStyleApplicationLifetime desktop:
|
|
DisableAvaloniaDataAnnotationValidation();
|
|
desktop.MainWindow = new MessageWindow(out provider);
|
|
break;
|
|
case ISingleViewApplicationLifetime singleViewPlatform:
|
|
singleViewPlatform.MainView = new MessageView(out provider);
|
|
break;
|
|
}
|
|
|
|
provider?.ShowMessage("Launcher is already running.","hey shithead!");
|
|
|
|
return;
|
|
}
|
|
|
|
if (Design.IsDesignMode)
|
|
{
|
|
switch (ApplicationLifetime)
|
|
{
|
|
case IClassicDesktopStyleApplicationLifetime desktop:
|
|
DisableAvaloniaDataAnnotationValidation();
|
|
desktop.MainWindow = new MainWindow();
|
|
break;
|
|
case ISingleViewApplicationLifetime singleViewPlatform:
|
|
singleViewPlatform.MainView = new MainView();
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
var services = new ServiceCollection();
|
|
services.AddAvaloniaServices();
|
|
services.AddServices();
|
|
services.AddViews();
|
|
services.AddTransient<DecompilerContentView>();
|
|
|
|
var serviceProvider = services.BuildServiceProvider();
|
|
|
|
switch (ApplicationLifetime)
|
|
{
|
|
case IClassicDesktopStyleApplicationLifetime desktop:
|
|
DisableAvaloniaDataAnnotationValidation();
|
|
desktop.MainWindow = serviceProvider.GetService<MainWindow>();
|
|
break;
|
|
case ISingleViewApplicationLifetime singleViewPlatform:
|
|
singleViewPlatform.MainView = serviceProvider.GetRequiredService<MainView>();
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
base.OnFrameworkInitializationCompleted();
|
|
}
|
|
|
|
private void DisableAvaloniaDataAnnotationValidation()
|
|
{
|
|
// Get an array of plugins to remove
|
|
var dataValidationPluginsToRemove =
|
|
BindingPlugins.DataValidators.OfType<DataAnnotationsValidationPlugin>().ToArray();
|
|
|
|
// remove each entry found
|
|
foreach (var plugin in dataValidationPluginsToRemove) BindingPlugins.DataValidators.Remove(plugin);
|
|
}
|
|
} |