SunnyUI/SunnyUI.Demo/Program.cs

20 lines
420 B
C#
Raw Normal View History

2020-05-11 21:11:29 +08:00
using System;
using System.Windows.Forms;
namespace Sunny.UI.Demo
{
static class Program
2020-05-11 21:11:29 +08:00
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
2020-05-11 21:11:29 +08:00
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FMain());
}
}
}