• C#winfrom中应用程序只启动一次代码


    static class Program
        {
            private const int WS_SHOWNORMAL = 1;
            [DllImport("User32.dll")]
            private static extern bool ShowWindowAsync(IntPtr hWnd, int cmdShow);
            [DllImport("User32.dll")]
            private static extern bool SetForegroundWindow(IntPtr hWnd);
            /// <summary>
            /// 应用程序的主入口点。
            /// </summary>
            [STAThread]
            static void Main()
            {
                Process instance = GetRunningInstance();
                if (instance==null)
                {
                    Application.EnableVisualStyles();
                    Application.SetCompatibleTextRenderingDefault(false);
                    Application.Run(new Login());
                }
                else
                {
                    HandleRunningInstance(instance);

                }
            }


             public static Process GetRunningInstance()
            {
                Process current = Process.GetCurrentProcess();
                Process[] processes = Process.GetProcessesByName(current.ProcessName);
                //遍历正在有相同名字运行的例程  
                foreach (Process process in processes)
                {
                    //忽略现有的例程  
                    if (process.Id != current.Id)
                        //确保例程从EXE文件运行
                        if ( System.Reflection.Assembly.GetExecutingAssembly().Location.Replace("/" , "\") == current.MainModule.FileName )
                            return process;
                }
                return null;
            }
            /// <summary>
            /// 激活原有的进程。
            /// </summary>
            /// <param name="instance"></param>
            public static void HandleRunningInstance(Process instance)
            {
                ShowWindowAsync(instance.MainWindowHandle, WS_SHOWNORMAL);
                SetForegroundWindow(instance.MainWindowHandle);
            }
        }

    看了评论,学习了新的方法。

    void Mian()

    bool isStart;
    Mutex MyMutex = new Mutex(true, "RunOne", out isStart);
    if (isStart)
    {
    启动程序
    Application.Run(new Form());
    }
    else{
    //程序已经启动
    }

    }

  • 相关阅读:
    回复结束
    UVA 10537
    RTP 记录 log 该机制
    python 时间处理
    照片总结---选择适当的NoSQL
    博客测试:博客系统i94web beta1.0 申请测试
    SQL随着子查询结果更新多个字段
    2机器学习实践笔记(k-最近邻)
    Android_Service组件详解
    Android多媒体分析-通过MediaStore获取Audio信息
  • 原文地址:https://www.cnblogs.com/net-study/p/3144012.html
Copyright © 2020-2023  润新知