2019-03-06 17:19:57 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Windows.Forms;
|
2019-03-07 13:16:19 +01:00
|
|
|
|
using SharpCATLib;
|
2019-03-06 17:19:57 +01:00
|
|
|
|
|
|
|
|
|
|
namespace SharpCATForms
|
|
|
|
|
|
{
|
|
|
|
|
|
internal static class Program
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The main entry point for the application.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[STAThread]
|
|
|
|
|
|
private static void Main()
|
2019-03-07 13:16:19 +01:00
|
|
|
|
{
|
2019-03-06 17:19:57 +01:00
|
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
|
|
|
|
Application.Run(new Form1());
|
2019-03-07 13:16:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
2019-03-06 17:19:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|