laatzen/GenesisDisplayTool/Program.cs
2021-10-01 11:10:17 +02:00

44 lines
706 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO.Ports; // sr
using System.Text; // sr
using System.Threading;
using System.Reflection;
using System.ComponentModel;
namespace GenesisDisplayTool
{
static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new GENESIS_DISPLAY_TOOL());
}
}
}