mirror of
https://gitee.com/AntdUI/AntdUI.git
synced 2026-03-04 12:50:45 +08:00
26 lines
608 B
C#
26 lines
608 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
using AntdUI;
|
|
|
|
namespace BallTest
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// 应用程序的主入口点。
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
|
|
// 创建并显示圆球窗体
|
|
var ballForm = new BallLayeredForm();
|
|
ballForm.Show();
|
|
|
|
// 运行应用程序消息循环
|
|
Application.Run();
|
|
}
|
|
}
|
|
} |