⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 startter.cs

📁 工作时用C#编写的WPS密码测试工具,主要用于测试与MSO文件兼容(IO)而写的.功能主要是由MSO文件加密.WPS打开,再由WPS加密,再由MSO打开.每个加密都是根据文件加密类型来加的,此代码.与
💻 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 + -