laatzen/GenesisDisplayTool/Program.cs

44 lines
706 B
C#
Raw Normal View History

2021-10-01 09:10:17 +00:00
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());
}
}
}