diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-08 04:46:10 +0000 |
commit | 1ac90768665c89d64a59f6e9935242fba1514bb9 (patch) | |
tree | 271671c7724a2d4f26e85f08df745b8163d6a811 /invoice_total4/InvoiceTotal/Program.cs | |
parent | invoice total 3 (diff) | |
download | cs-1ac90768665c89d64a59f6e9935242fba1514bb9.tar cs-1ac90768665c89d64a59f6e9935242fba1514bb9.tar.gz cs-1ac90768665c89d64a59f6e9935242fba1514bb9.tar.bz2 cs-1ac90768665c89d64a59f6e9935242fba1514bb9.tar.xz cs-1ac90768665c89d64a59f6e9935242fba1514bb9.zip |
invoice total 4
Diffstat (limited to 'invoice_total4/InvoiceTotal/Program.cs')
-rw-r--r-- | invoice_total4/InvoiceTotal/Program.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/invoice_total4/InvoiceTotal/Program.cs b/invoice_total4/InvoiceTotal/Program.cs new file mode 100644 index 0000000..3c6b99d --- /dev/null +++ b/invoice_total4/InvoiceTotal/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace InvoiceTotal +{ + 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 frmInvoiceTotal()); + } + } +} |