mirror of
https://github.com/soukoku/ntwain.git
synced 2025-12-29 11:02:35 +08:00
Initial move from old twain-in-dotnet.
This commit is contained in:
19
Tests/Tester.Winform/Program.cs
Normal file
19
Tests/Tester.Winform/Program.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Tester.Winform
|
||||
{
|
||||
static class Program
|
||||
{
|
||||
/// <summary>
|
||||
/// The main entry point for the application.
|
||||
/// </summary>
|
||||
[STAThread]
|
||||
static void Main()
|
||||
{
|
||||
Application.EnableVisualStyles();
|
||||
Application.SetCompatibleTextRenderingDefault(false);
|
||||
Application.Run(new TestForm());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user