zoukankan      html  css  js  c++  java
  • Visual Studio 2005(C#)中只允许一个实例运行的一种方法

    using System;
    using System.Collections.Generic;
    using System.Windows.Forms;

    namespace School.ReadPaperControl
    {
        static class Program
        {
            /// <summary>
            /// The main entry point for the application.
            /// </summary>
            [STAThread]
            static void Main()
            {
                // 控制仅打开单实例进程
                if (System.Diagnostics.Process.GetProcessesByName(System.Diagnostics.Process.GetCurrentProcess().ProcessName).Length == 0)
                {
                    Application.EnableVisualStyles();
                    Application.SetCompatibleTextRenderingDefault(false);
                    Application.Run(new frmControl());
                }
            }
        }
    }

  • 相关阅读:
    高仿中国银行ATM系统
    第二次冲刺2
    第二轮冲刺1
    本日进度7
    本日进度6
    本日进度5
    本日进度4
    本日进度3
    本日进度2
    本日进度
  • 原文地址:https://www.cnblogs.com/linfuguo/p/629161.html
Copyright © 2011-2022 走看看