mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
40 lines
1 KiB
C#
Executable file
40 lines
1 KiB
C#
Executable file
using Avalonia;
|
|
using Avalonia.Controls.ApplicationLifetimes;
|
|
using Avalonia.Markup.Xaml;
|
|
using MPN00BS.ViewModels;
|
|
using System.IO;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace MPN00BS
|
|
{
|
|
public partial class App : Application
|
|
{
|
|
#if OS_LINUX
|
|
[DllImport("libc", SetLastError = true)]
|
|
private static extern int chmod(string pathname, int mode);
|
|
|
|
#endif
|
|
public App()
|
|
{
|
|
this.DataContext = new HispViewModel();
|
|
}
|
|
|
|
public override void Initialize()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
#if OS_LINUX
|
|
chmod(Path.Combine(Directory.GetCurrentDirectory(), "flashplayer", "LINUX", "flash.elf"), 511);
|
|
#endif
|
|
}
|
|
|
|
public override void OnFrameworkInitializationCompleted()
|
|
{
|
|
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
|
{
|
|
desktop.MainWindow = new MpOrSp();
|
|
}
|
|
|
|
base.OnFrameworkInitializationCompleted();
|
|
}
|
|
}
|
|
}
|