32 lines
884 B
C#
32 lines
884 B
C#
using Avalonia;
|
||
using System;
|
||
using System.Runtime.InteropServices;
|
||
using toast_mcl;
|
||
|
||
namespace toast_mcl
|
||
{
|
||
internal class Program
|
||
{
|
||
// 初始化代码。
|
||
// 在调用AppMain之前,请不要使用任何Avalonia、第三方API或任何依赖于SynchronizationContext的代码:
|
||
// 因为这些东西尚未初始化,可能会导致错误。
|
||
[STAThread]
|
||
public static void Main(string[] args)
|
||
{
|
||
Base.Init();
|
||
|
||
BuildAvaloniaApp()
|
||
.StartWithClassicDesktopLifetime(args);
|
||
}
|
||
|
||
// Avalonia配置,请勿删除;也被可视化设计器使用。
|
||
public static AppBuilder BuildAvaloniaApp()
|
||
{
|
||
return AppBuilder.Configure<App>()
|
||
.UsePlatformDetect()
|
||
.WithFont_LXGWWenKai()
|
||
.LogToTrace();
|
||
}
|
||
}
|
||
}
|