diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-08 04:29:37 +0000 |
commit | e85f0984bac7611f216bbc406713e8fd86312e33 (patch) | |
tree | 390389c21e5431ea9f3680b6f875148b8e28713b /text2html/txt_to_html/Program.cs | |
parent | temperatures (diff) | |
download | cs-e85f0984bac7611f216bbc406713e8fd86312e33.tar cs-e85f0984bac7611f216bbc406713e8fd86312e33.tar.gz cs-e85f0984bac7611f216bbc406713e8fd86312e33.tar.bz2 cs-e85f0984bac7611f216bbc406713e8fd86312e33.tar.xz cs-e85f0984bac7611f216bbc406713e8fd86312e33.zip |
text -> HTML
Diffstat (limited to 'text2html/txt_to_html/Program.cs')
-rw-r--r-- | text2html/txt_to_html/Program.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/text2html/txt_to_html/Program.cs b/text2html/txt_to_html/Program.cs new file mode 100644 index 0000000..5a93c51 --- /dev/null +++ b/text2html/txt_to_html/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace txt_to_html +{ + 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()); + } + } +} |