copy/paste from playground

This commit is contained in:
Ulf
2013-06-12 21:59:58 +02:00
commit f3b8ed6aa8
26 changed files with 2359 additions and 0 deletions

18
Program.cs Normal file
View File

@@ -0,0 +1,18 @@
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 PreviewToyMain());
}
}
}