From 8cdb4aab513016bc7ced77b2ac254184d8be5ef3 Mon Sep 17 00:00:00 2001 From: Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: temperatures --- temps/temperatures/Program.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 temps/temperatures/Program.cs (limited to 'temps/temperatures/Program.cs') diff --git a/temps/temperatures/Program.cs b/temps/temperatures/Program.cs new file mode 100644 index 0000000..4698acc --- /dev/null +++ b/temps/temperatures/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace temperatures +{ + internal 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 frm_main()); + } + } +} -- cgit 1.4.1