Files
OnDoc/Vorlagen_Viewer/Program.cs
Stefan Hutter 53a008972e update 20241231
2024-12-31 13:31:49 +01:00

23 lines
527 B
C#

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