Files
aistudio-wpf-diagram/Others/Fluent.Ribbon/Fluent.Ribbon.Showcase/Program.cs
2023-04-16 20:11:40 +08:00

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;
}
}
}