mirror of
https://gitee.com/lircy/S7CommPlusV3Driver
synced 2026-03-24 07:26:35 +08:00
first commit
This commit is contained in:
18
S7CommPlusGUIBrowser/Program.cs
Normal file
18
S7CommPlusGUIBrowser/Program.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user