21 lines
494 B
C#
21 lines
494 B
C#
![]() |
using System;
|
||
|
using System.Windows.Forms;
|
||
|
|
||
|
namespace Sunny.UI.Demo
|
||
|
{
|
||
|
static class Program
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The main entry point for the application.
|
||
|
/// </summary>
|
||
|
[STAThread]
|
||
|
static void Main()
|
||
|
{
|
||
|
Application.SetHighDpiMode(HighDpiMode.SystemAware);
|
||
|
Application.EnableVisualStyles();
|
||
|
Application.SetCompatibleTextRenderingDefault(false);
|
||
|
Application.Run(new FMain());
|
||
|
}
|
||
|
}
|
||
|
}
|