22 lines
543 B
C#
Raw Normal View History

2021-01-06 14:53:33 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace ST.Library.UI
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
new Demo_Image.FrmImage().Show();
Application.Run(new Form1());
}
}
}