Files
diplomarbeit/Tester/SW/designtest_control/QUA_2475_designtest/Program.cs
T
Matthias 7209728966 renaming
git-svn-id: file:///srv/dev-disk-by-uuid-17e88007-4d0c-45e0-8757-cacfcc458630/repositories/svn/Diplomarbeit@93 9fe90eed-be63-e94b-8204-d34ff4c2ff93
2009-01-07 21:45:48 +00:00

22 lines
518 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace QUA_2475_designtest
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new mainWindow());
}
}
}