Files
S7CommPlusV3Driver/S7CommPlusGUIBrowser/Program.cs

19 lines
446 B
C#
Raw Normal View History

2025-08-05 15:29:54 +08:00
using System;
using System.Windows.Forms;
namespace S7CommPlusGUIBrowser
{
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());
}
}
}