代码拉取完成,页面将自动刷新
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Hodor
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
using Mutex mutex = new Mutex(true, Application.ProductName, out bool IsRun);
if (IsRun)
{
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new mainWin());
// 获得当前登录的Windows用户标示
//System.Security.Principal.WindowsIdentity Identity = System.Security.Principal.WindowsIdentity.GetCurrent();
//System.Security.Principal.WindowsPrincipal Principal = new System.Security.Principal.WindowsPrincipal(Identity);
// 如果是管理员则直接运行
//if (Principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Administrator))
//{
// Application.SetHighDpiMode(HighDpiMode.SystemAware);
// Application.EnableVisualStyles();
// Application.SetCompatibleTextRenderingDefault(false);
// Application.Run(new mainWin());
//}
//else
//{
// // 创建启动对象
// System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
// startInfo.UseShellExecute = true;
// startInfo.WorkingDirectory = Environment.CurrentDirectory;
// startInfo.FileName = Application.ExecutablePath;
// //设置启动动作,确保以管理员身份运行
// startInfo.Verb = "runas";
// try
// {
// System.Diagnostics.Process.Start(startInfo);
// }
// catch
// {
// return;
// }
// Application.Exit();
//}
}
else
{
System.Threading.Thread.Sleep(1000);
// 终止此进程并为基础操作系统提供指定的退出代码。
System.Environment.Exit(1);
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。