diff options
| author | Indrajith K L | 2021-05-16 15:41:53 +0530 | 
|---|---|---|
| committer | Indrajith K L | 2021-05-16 15:41:53 +0530 | 
| commit | 05a44ebcfce184b1ee89f0c983623ff0e17059a9 (patch) | |
| tree | 62aa25f91dccbe7dc4fbac9c4cd413008f043709 /SensorClientAppW/Program.cs | |
| download | SensorClientXMPP-05a44ebcfce184b1ee89f0c983623ff0e17059a9.tar.gz SensorClientXMPP-05a44ebcfce184b1ee89f0c983623ff0e17059a9.tar.bz2 SensorClientXMPP-05a44ebcfce184b1ee89f0c983623ff0e17059a9.zip | |
:tada: Working Sample for Sensor Client
Diffstat (limited to 'SensorClientAppW/Program.cs')
| -rw-r--r-- | SensorClientAppW/Program.cs | 23 | 
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()); +        } +    } +} | 
