Click here to Skip to main content
15,868,141 members
Articles / Desktop Programming / Windows Forms

Yet Another Splash Screen in C#

Rate me:
Please Sign up or sign in to vote.
4.94/5 (50 votes)
8 Jul 2009CPOL3 min read 215.8K   22.6K   155   46
Simple splash screen using C#
Image 1

Introduction

The article describes creating a simple splash screen in C#. The intent of this article is to create a simple quick splash screen in a separate thread.

Lot of code is available to build fancy looking splash screens with lot of animation. I have not spent time adding animation, etc. I just took a simple picture for splash screen over which a status message is displayed along with the progress bar in marquee mode. A good thing which I learnt was to make the label’s background transparent when overlaying over the picture box control.

Additionally I have created the splash screen in a separate thread and calls for updating the splash screen status are thread safe using BeginInvoke. I have seen people preferring splash screen in a separate thread and some in the main thread. In my opinion, it's better to create it in a separate thread and expose some functions which can be called by the main thread to show/hide/update the splash screen.

Background

The code is simple using threading concepts in C#. The code has been compiled using Visual Studio Express edition 2008 compiled with C# 2.0. One can use these files in Visual Studio 2005 by creating a blank solution and then selecting Windows application in application type.

Using the Code

I have created the following functions for exposing the Splash Screen functionality in the main form. All these functions are static functions, meaning you would not require an instance of the class to be initiated for using it:

  • C#
    public static void ShowSplashScreen()
  • C#
    public static void CloseSplashScreen()
  • C#
    public static void UdpateStatusText(string Text)
  • C#
    public static void UdpateStatusTextWithStatus(string Text,TypeOfMessage tom)

I made a static class named SplashScreen which is basically a wrapper around the Splash Screen form. To modify the look and feel of the splash screen, the user can edit SplashScreenForm form and add more functionality to it. The SplashScreenForm exposes functions to update the status text on the form.

The code below is used in the constructor of the MainForm where I initiate the Splash screen and hide the form.

C#
this.Hide(); 
Thread splashthread = new Thread(new ThreadStart(SplashScreen.ShowSplashScreen));
splashthread.IsBackground = true;
splashthread.Start(); 

The code below is used to make the label’s background transparent on a picturebox control. This is used in the SplashScreenForm form.

C#
this.label1.Parent = this.pictureBox1;
this.label1.BackColor = Color.Transparent; 

I made two functions to update the status on the splash screen. I have set the default color for label text to green and the user can call update using the function:

C#
public static void UdpateStatusText(string Text)

I also extended the update function to change the font color based on type of status message.

  • Green for success
  • Yellow for warning
  • Red for error

So I create an enum structure as below for the public static void UdpateStatusTextWithStatus(string Text,TypeOfMessage tom) where I change the color of the label.

C#
public enum TypeOfMessage
{
    Success,
    Warning,
    Error,
} 

Another important thing to keep in mind is that the user should not be able to close the application when splash screen is active. So I create a flag (bool CloseSplashScreenFlag) which is checked whenever the splash screen is sent a message to close by trapping FormClosing event. Hence a simple call like this.close() would not close the form. One would require public static void CloseSplashScreen() function to be called which sets the flag and then close the splashscreen.  

The code below is for handling the FormClosing event where if the flag is set to false, it bypasses the close event.

C#
private void SplashForm_FormClosing(object sender, FormClosingEventArgs e)
{
   if (CloseSplashScreenFlag == false)
   e.Cancel = true;
}

Points of Interest

  1. Making label’s background transparent over a picture box control
  2. Handing close event on the splash screen
  3. Exposing static functions to call splashscreen

History

  • 6th July, 2009: First release
  • 7th July, 2009: Updated demo, source code and screenshot

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Member 1115967416-Oct-14 16:05
Member 1115967416-Oct-14 16:05 
GeneralMy vote of 5 Pin
Abinash Bishoyi13-Apr-13 13:27
Abinash Bishoyi13-Apr-13 13:27 
QuestionThe following code line in MainForm will be needless? Pin
BlackMilan29-Oct-12 1:25
BlackMilan29-Oct-12 1:25 
QuestionProblem on XP SP3 Pin
Peteringermany11-Aug-12 5:52
Peteringermany11-Aug-12 5:52 
AnswerRe: Problem on XP SP3 Pin
Peteringermany11-Aug-12 6:21
Peteringermany11-Aug-12 6:21 
BugPossible threading problem Pin
Muir10-Aug-12 5:08
Muir10-Aug-12 5:08 
GeneralRe: Possible threading problem Pin
Peteringermany11-Aug-12 5:51
Peteringermany11-Aug-12 5:51 
GeneralRe: Possible threading problem Pin
Muir11-Aug-12 7:20
Muir11-Aug-12 7:20 
QuestionMy vote of 5 too Pin
Peteringermany28-Jul-12 6:41
Peteringermany28-Jul-12 6:41 
GeneralMy vote of 5 Pin
AJMAL SHAHZAD28-Jun-12 2:35
AJMAL SHAHZAD28-Jun-12 2:35 
GeneralMy vote of 5 Pin
Md. Marufuzzaman2-Jun-12 23:45
professionalMd. Marufuzzaman2-Jun-12 23:45 
GeneralExactly what I needed. That must be a 5'er Pin
ZeedijkMike10-Apr-12 8:43
ZeedijkMike10-Apr-12 8:43 
Questiongood Pin
flyicing22-Mar-12 15:07
flyicing22-Mar-12 15:07 
QuestionMdiParent Pin
Member 824571817-Jan-12 18:58
Member 824571817-Jan-12 18:58 
AnswerRe: MdiParent Pin
kaviteshsingh17-Jan-12 19:58
kaviteshsingh17-Jan-12 19:58 
GeneralReally good code example Pin
John Mealing12-Jan-12 8:13
John Mealing12-Jan-12 8:13 
QuestionGood efforts Pin
uspatel6-Jan-12 22:54
professionaluspatel6-Jan-12 22:54 
GeneralMy vote of 5 Pin
uspatel6-Jan-12 22:54
professionaluspatel6-Jan-12 22:54 
GeneralMy vote of 4 Pin
Matty_R15-Jul-11 14:09
Matty_R15-Jul-11 14:09 
GeneralRe: My vote of 4 Pin
kaviteshsingh25-Jul-11 9:51
kaviteshsingh25-Jul-11 9:51 
GeneralMy Vote of 5 Pin
RaviRanjanKr17-May-11 1:10
professionalRaviRanjanKr17-May-11 1:10 
GeneralRe: My Vote of 5 Pin
kaviteshsingh25-Jul-11 9:51
kaviteshsingh25-Jul-11 9:51 
GeneralMy vote of 4 Pin
Sharique uddin Ahmed Farooqui18-Jan-11 0:42
Sharique uddin Ahmed Farooqui18-Jan-11 0:42 
GeneralRe: My vote of 4 Pin
kaviteshsingh25-Jul-11 9:51
kaviteshsingh25-Jul-11 9:51 
GeneralA wierd issue Pin
Sharique uddin Ahmed Farooqui18-Jan-11 0:41
Sharique uddin Ahmed Farooqui18-Jan-11 0:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.