TINF20C_ModellingWizard_Dev.../SOURCE/Application/Program.cs

20 lines
423 B
C#
Raw Permalink Normal View History

2022-03-11 14:07:50 +00:00
using System;
using System.Windows.Forms;
namespace App
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}