LevelOS/Components/Program.cs

16 lines
320 B
C#

using System;
using System.Windows.Forms;
using static System.Windows.Forms.DataFormats;
namespace CPM.Test
{
internal static class Program
{
[STAThread]
static void Main()
{
Application.Run(new FrmTestComponents()); // ou seu form principal
}
}
}