You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

22 lines
464 B

using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace PDAForm
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[MTAThread]
static void Main()
{
frmLogin frm = new frmLogin();
if (frm.ShowLogin() == DialogResult.OK)
{
Application.Run(new frmMain());
}
}
}
}