diff options
Diffstat (limited to 'invoice_total2/InvoiceTotal/Program.cs')
-rw-r--r-- | invoice_total2/InvoiceTotal/Program.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/invoice_total2/InvoiceTotal/Program.cs b/invoice_total2/InvoiceTotal/Program.cs new file mode 100644 index 0000000..a2a3ff0 --- /dev/null +++ b/invoice_total2/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 frmInvoiceTotal3()); + } + } +} |