• 简单的只运行一个程序实例[原创]


     1using System;
     2using System.Collections.Generic;
     3using System.Windows.Forms;
     4using BOM.NewUI;
     5using System.Threading;
     6
     7namespace NewUI
     8{
     9    static class Program
    10    {
    11        /// <summary>
    12        /// 应用程序的主入口点。
    13        /// </summary>

    14        [STAThread]
    15        static void Main()
    16        {
    17            try
    18            {
    19                //声明互斥体。   
    20                Mutex mutex = new Mutex(false"ThisShouldOnlyRunOnce");
    21                //判断互斥体是否使用中。   
    22                bool running = !mutex.WaitOne(0false);
    23                if (!running)
    24                {
    25                    log4net.Config.XmlConfigurator.Configure();
    26                    Application.EnableVisualStyles();
    27                    Application.SetCompatibleTextRenderingDefault(false);
    28                    Thread.CurrentThread.Name = "GUI Main Thread";
    29                    Application.Run(new MainContext());
    30                }

    31            }

    32            catch (Exception ex)
    33            {
    34                MessageBox.Show(ex.ToString());
    35                log4net.LogManager.GetLogger("Main Thread").Error("error:", ex);
    36
    37            }

    38         }

    39
    40
    41    }

    42}
  • 相关阅读:
    转:Oracle中的日期和字符串互相转换
    jQuery DateTimePicker 日期和时间插件
    js转换时间戳-转换成 yyyy-MM-dd HH:mm:ss
    linux下载服务器上的文件命令-sz
    eclipse中集成maven
    maven的安装和环境配置
    eclipse复制粘贴变卡的解决办法
    在表单提交之前做校验-利用jQuery的submit方法
    centos7 ipaddr 无法查看虚拟机IP解决办法
    linux下tomcat启动很慢的解决办法
  • 原文地址:https://www.cnblogs.com/winnxm/p/1072259.html
Copyright © 2020-2023  润新知