You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
754 B
31 lines
754 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SECS_small_ver
|
|
{
|
|
static class Program
|
|
{
|
|
static System.Threading.Mutex mutex;
|
|
/// <summary>
|
|
/// 應用程式的主要進入點。
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
mutex = new System.Threading.Mutex(true, "OnlyRun");
|
|
if (mutex.WaitOne(0, false))
|
|
{
|
|
Application.Run(new MainFrm());
|
|
}
|
|
|
|
else
|
|
Application.Exit();
|
|
}
|
|
}
|
|
}
|