123456789101112131415161718192021222324252627282930313233343536373839 |
- using Common;
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Linq;
- using System.Windows.Forms;
- namespace LisPacsDataUpload
- {
- static class Program
- {
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- #region 控制程序只能打开一次 检测进程中是否存在有不同pid、相同程序名的;
- Process process = Process.GetCurrentProcess();
- if (Process.GetProcesses().Any(s => s.ProcessName == process.ProcessName && (!s.Id.Equals(process.Id))))
- {
- MessageBox.Show("程序已打开,请查看任务栏图标或托盘处!");
- return;
- }
- #endregion
- //string password = "fu7vttF6y4uzdy5L";
- ////加密初始化向量
- //string iv = "2022090814:13:00";
- //string message = Tools.AESEncrypt("跑跑卡丁hell06661111111111111111", password, iv);
- //string str = message;
- //message = Tools.AESDecrypt("459HeKmnBgtP+ydiNOw/lP1mkffBqBCf57eHuVm8UHtWbUKOuLrZpXIrlsF6BQ4x", password, iv);
- //str = message;
- Application.Run(new Form1());
- }
- }
- }
|