winform 使用SplashScreen窗口

简介: SplashScreen,就是平时我们说的溅射屏幕,任何一个做过客户端程序的coder应该对它都不陌生,因为它能提升用户体验,让软件看上去更美。SplashScreenForm通常进入程序时是打开,主窗体加载完毕后退出。

SplashScreen,就是平时我们说的溅射屏幕,任何一个做过客户端程序的coder应该对它都不陌生,因为它能提升用户体验,让软件看上去更美。SplashScreenForm通常进入程序时是打开,主窗体加载完毕后退出。一般来说,SplashScreenForm比较简洁,窗体的内容只是显示程序主题、版权等信息;复杂些的,可以显示主程序的加载项目情况。

  下面是我实现的一个SplashScreen类:

复制代码
using System;
using System.Collections.Generic;
using System.Text; using System.Windows.Forms; using System.Threading; using System.Reflection; namespace SplashScreen { public class SplashScreen { private static object _obj = new object(); private static Form _SplashForm = null; private static Thread _SplashThread = null; private delegate void ChangeFormTextdelegate(string s); public static void Show(Type splashFormType) { if (_SplashThread != null) return; if (splashFormType == null) { throw (new Exception()); } _SplashThread = new Thread(new ThreadStart(delegate() { 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()); } } } } } }
复制代码

调用的时候只需要传入你需要作为溅射屏幕的窗体,然后在主窗体加载完毕后调用close方法:

复制代码
namespace SplashScreen
{
    public partial class MainForm : Form { public MainForm() { SplashScreen.Show(typeof(SplashForm)); InitializeComponent(); Thread.Sleep(1000); SplashScreen.ChangeTitle("111"); Thread.Sleep(1000); SplashScreen.ChangeTitle("222"); Thread.Sleep(1000); SplashScreen.ChangeTitle("333"); Thread.Sleep(1000); SplashScreen.ChangeTitle("444"); SplashScreen.Close(); } } }
复制代码

 

目录
相关文章
|
7月前
|
算法 API C++
【Qt UI】QT 窗口/控件置顶方法详解
【Qt UI】QT 窗口/控件置顶方法详解
490 0
|
8天前
|
数据处理 C# Windows
WPF中实现弹出进度条窗口
【11月更文挑战第14天】在WPF中实现弹出进度条窗口,需创建进度条窗口界面(XAML)和对应的代码-behind(C#)。通过定义`ProgressWindow`类,包含`ProgressBar`和`TextBlock`,并在主窗口或逻辑代码中调用,模拟长时间任务时更新进度条,确保UI流畅。
|
7月前
|
C# 开发者
35.c#:winform窗口
35.c#:winform窗口
46 1
|
人工智能 C#
WPF自定义控件库之Window窗口
本文以自定义窗口为例,简述WPF开发中如何通过自定义控件来扩展功能和样式,仅供学习分享使用,如有不足之处,还请指正。
254 5
|
C#
winform,wpf全屏 还显示任务栏的解决方法
原文:winform,wpf全屏 还显示任务栏的解决方法 以wpf为例: 全屏代码: this.Topmost = true; this.WindowStyle = System.Windows.WindowStyle.
1899 0
|
C#
WPF 自定义窗口关闭按钮
原文:WPF 自定义窗口关闭按钮 关闭图标设计主要涉及主要知识点: 1、Path,通过Path来画线。当然一般水平、竖直也是可以用Rectangle/Border之类的替代      一些简单的线条图标用Path来做,还是很方便的。
1214 0
|
C#
WPF 窗口
原文:WPF 窗口 在WPF中,经常需要对窗口进行设置,下面讲讲常用的几个设置。 窗口样式 1、无边框窗口 无边框透明窗体 设置 WindowStyle="None"--无边框,如果需要其它按钮,如缩小、放大、收缩、关闭按钮,可以自定义 AllowsTransparency="True"-...
748 0
|
C# Windows Web App开发
WPF 应用完全模拟 UWP 的标题栏按钮
原文:WPF 应用完全模拟 UWP 的标题栏按钮 版权声明:本作品采用知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议进行许可。欢迎转载、使用、重新发布,但务必保留文章署名吕毅(包含链接:http://blog.csdn.net/wpwalter/),不得用于商业目的,基于本文修改后的作品务必以相同的许可发布。
1089 0
|
C#
WPF如何为程序添加splashScreen(初始屏幕)
原文:WPF如何为程序添加splashScreen(初始屏幕) 一、考虑到大部分的splashscreen其实都只是一个图片,所以最简单的做法是,先导入一张图片,然后设置它的生成操作为“splash screen”   二、通过程序设置SplashScreen public parti...
1418 0
|
C# Windows
WPF:如何为程序添加splashScreen?
原文:WPF:如何为程序添加splashScreen? 大家是否还记得在Windows Forms程序中如何实现splashScreen吗?我们一般都会使用Microsoft.VisualBasic.dll中提供的那个WindowsFormsApplicationBase类型,它有一个所谓的splashscreen属性,可以指定为一个窗体的。
893 0