Textractor_test/GUI/Program.cs
Akash Mozumdar a8f2ca79a5 Revert "fix? hostinterop"
This reverts commit 314c17b435.
2018-07-20 23:43:25 -04:00

23 lines
504 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace GUI
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}