aboutsummaryrefslogtreecommitdiff
path: root/SensorClientAppW/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SensorClientAppW/Program.cs')
-rw-r--r--SensorClientAppW/Program.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/SensorClientAppW/Program.cs b/SensorClientAppW/Program.cs
new file mode 100644
index 0000000..c1a471c
--- /dev/null
+++ b/SensorClientAppW/Program.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace SensorClientAppW
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.SetHighDpiMode(HighDpiMode.SystemAware);
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new Form1());
+ }
+ }
+}