mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
17 lines
294 B
C#
17 lines
294 B
C#
namespace FluentTest
|
|
{
|
|
using System;
|
|
|
|
public static class Program
|
|
{
|
|
[STAThread]
|
|
public static int Main(string[] args)
|
|
{
|
|
var app = new App();
|
|
app.InitializeComponent();
|
|
app.Run();
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |