搭建自己的直播平臺,實現exe單例模式

zhibo系統開發發表於2021-12-13

搭建自己的直播平臺,實現exe單例模式的相關程式碼

        static void Main()
        {undefined
            Application.EnableVisualStyles();                       //樣式設定
            Application.SetCompatibleTextRenderingDefault(false);   //樣式設定
            //獲取當前程式名稱
            string currentProcessName = Process.GetCurrentProcess().ProcessName;
            //把該名稱的所有程式的列表
            Process[] process = Process.GetProcessesByName(currentProcessName);
            if (process.Length > 1)
            {undefined
                MessageBox.Show("程式已經執行!", " 提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }
            FormSplash sp = new FormSplash();                               //啟動窗體
            sp.pictureBox1.SendToBack();
            sp.Show();                                              //顯示啟動窗體
            context = new ApplicationContext();
            context.Tag = sp;
            Application.Idle += new EventHandler(Application_Idle); //註冊程式執行空閒去執行主程式窗體相應初始化程式碼
            Application.Run(context);
        }


以上就是 搭建自己的直播平臺,實現exe單例模式的相關程式碼,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2847422/,如需轉載,請註明出處,否則將追究法律責任。

相關文章