📄 startter.cs
字号:
using System;
using System.Windows.Forms;
namespace v6SmokeTest.PasswordTest
{
/// <summary>
/// 程序起始类
/// </summary>
public class Startter
{
#region 应用程序的主入口点
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
FormMain m_pFormMain = new FormMain();
if(args.Length > 1)
{
if(args[0] == "1" || args[0].ToUpper() == "TRUE")
m_pFormMain.AutoStart = true;
if(args[1] == "1" || args[1].ToUpper() == "TRUE")
m_pFormMain.AutoExit = true;
}
Application.Run(m_pFormMain);
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -