1 Star 23 Fork 10

coderbusy.com/demo

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Program.cs 682 Bytes
一键复制 编辑 原始数据 按行查看 历史
Soar360 提交于 2024-01-14 14:26 +08:00 . ItemsPanelMainCommand
using System;
using Avalonia;
namespace ItemsPanelMainCommand.Desktop;
class Program
{
// Initialization code. Don't use any Avalonia, third-party APIs or any
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
// yet and stuff might break.
[STAThread]
public static void Main(string[] args) => BuildAvaloniaApp()
.StartWithClassicDesktopLifetime(args);
// Avalonia configuration, don't remove; also used by visual designer.
public static AppBuilder BuildAvaloniaApp()
=> AppBuilder.Configure<App>()
.UsePlatformDetect()
.WithInterFont()
.LogToTrace();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/coderbusy/demo.git
git@gitee.com:coderbusy/demo.git
coderbusy
demo
demo
master

搜索帮助