diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-08 04:29:09 +0000 |
commit | 8cdb4aab513016bc7ced77b2ac254184d8be5ef3 (patch) | |
tree | 78c9d5c029943db862317da2a279e5eac810fd3e /temps/temperatures/Program.cs | |
parent | double -> int (diff) | |
download | cs-8cdb4aab513016bc7ced77b2ac254184d8be5ef3.tar cs-8cdb4aab513016bc7ced77b2ac254184d8be5ef3.tar.gz cs-8cdb4aab513016bc7ced77b2ac254184d8be5ef3.tar.bz2 cs-8cdb4aab513016bc7ced77b2ac254184d8be5ef3.tar.xz cs-8cdb4aab513016bc7ced77b2ac254184d8be5ef3.zip |
temperatures
Diffstat (limited to 'temps/temperatures/Program.cs')
-rw-r--r-- | temps/temperatures/Program.cs | 23 |
1 files changed, 23 insertions, 0 deletions
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()); + } + } +} |