Try to put KDS values in own namespace and enum.

This commit is contained in:
Eugene Wang
2025-03-09 08:55:45 -04:00
parent 5c15ec3711
commit c8ee66a828
17 changed files with 5569 additions and 87 deletions

View File

@@ -0,0 +1,17 @@
namespace ScannerTester
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new MainForm());
}
}
}