Fetch the repository succeeded.
using PP.PaintLib;
using System;
using System.Diagnostics;
using System.Windows.Forms;
namespace MyPaint
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//启动程序
var progress1=GetExistProcess();
if (progress1 != null)
{
IntPtr mainWindowHandle1 = progress1.MainWindowHandle;
if (mainWindowHandle1 == IntPtr.Zero)//窗口被隐藏了
{
//目标窗体的 Text 属性中的字符串
mainWindowHandle1 = PPWin32.FindWindow(null, "PP画图");
}
PPWin32.ShowWindowAsync(mainWindowHandle1, 1);
PPWin32.SetForegroundWindow(mainWindowHandle1);
}
else
{
Application.Run(new MainForm());
}
}
/// <summary>
/// 查看程序是否已经运行
/// </summary>
/// <returns></returns>
private static Process GetExistProcess()
{
Process currentProcess = Process.GetCurrentProcess();
foreach (Process process1 in Process.GetProcessesByName(currentProcess.ProcessName))
{
if (process1.Id != currentProcess.Id)
{
return process1;
}
}
return null;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。