From a8873848498c3bf071b951957e0aaaa3d0c9aa77 Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: payment --- payment/Payment/Program.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 payment/Payment/Program.cs (limited to 'payment/Payment/Program.cs') diff --git a/payment/Payment/Program.cs b/payment/Payment/Program.cs new file mode 100644 index 0000000..7b3043c --- /dev/null +++ b/payment/Payment/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Payment +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.SetHighDpiMode(HighDpiMode.SystemAware); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new frmCustomer()); + } + } +} -- cgit 1.4.1