From 05a44ebcfce184b1ee89f0c983623ff0e17059a9 Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sun, 16 May 2021 15:41:53 +0530 Subject: :tada: Working Sample for Sensor Client --- SensorClientAppW/Program.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 SensorClientAppW/Program.cs (limited to 'SensorClientAppW/Program.cs') 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 + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.SetHighDpiMode(HighDpiMode.SystemAware); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} -- cgit v1.2.3