Add project files.

This commit is contained in:
aj
2017-02-06 08:36:35 -05:00
parent 79ed1db912
commit 21e498619c
17 changed files with 1162 additions and 0 deletions

22
CutToLength/Program.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CutToLength
{
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());
}
}
}