当前位置:   article > 正文

winform 使用SplashScreen窗口_splash form has already been displayed

splash form has already been displayed
() { CreateInstance(splashFormType); Application.Run(_SplashForm); })); _SplashThread.IsBackground =  true; _SplashThread.SetApartmentState(ApartmentState.STA); _SplashThread.Start(); } public static void ChangeTitle(string status) { ChangeFormTextdelegate de = new ChangeFormTextdelegate(ChangeText); _SplashForm.Invoke(de, status); } public static void Close() { if (_SplashThread == null || _SplashForm == null) return;try { _SplashForm.Invoke(new MethodInvoker(_SplashForm.Close)); } catch (Exception) { }             _SplashThread = null; _SplashForm = null; } private static void ChangeText(string title) { _SplashForm.Text = title.ToString(); } private static void CreateInstance(Type FormType) { if (_SplashForm == null) { lock (_obj) { object obj = FormType.InvokeMember(null, BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.CreateInstance, null, null, null); _SplashForm = obj as Form; _SplashForm.TopMost = true; _SplashForm.ShowInTaskbar = false; _SplashForm.BringToFront(); _SplashForm.StartPosition = FormStartPosition.CenterScreen; if (_SplashForm == null) {throw (new Exception()); } } } } } }
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/309500
推荐阅读
相关标签
  

闽ICP备14008679号