Files
eveo/Program.cs
Ulf 02e945999b refactor
added a timing solution to prevent windows from resizing when changing the frame
option
2013-06-13 01:06:54 +02:00

18 lines
460 B
C#

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