Click here to Skip to main content
Click here to Skip to main content

Yet Another Splash Screen in C#

By , 8 Jul 2009
 

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:

  • public static void ShowSplashScreen()
  • public static void CloseSplashScreen()
  • public static void UdpateStatusText(string Text)
  • 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.

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.

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:

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.

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.

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)

About the Author

kavitesh
Software Developer (Senior)
India India
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberAbinash Bishoyi13-Apr-13 13:27 
QuestionThe following code line in MainForm will be needless?memberBlackMilan29-Oct-12 1:25 
QuestionProblem on XP SP3memberPeteringermany11-Aug-12 5:52 
AnswerRe: Problem on XP SP3memberPeteringermany11-Aug-12 6:21 
BugPossible threading problemmemberMuir10-Aug-12 5:08 
GeneralRe: Possible threading problemmemberPeteringermany11-Aug-12 5:51 
GeneralRe: Possible threading problemmemberMuir11-Aug-12 7:20 
QuestionMy vote of 5 toomemberPeteringermany28-Jul-12 6:41 
GeneralMy vote of 5memberAJMAL SHAHZAD28-Jun-12 2:35 
GeneralMy vote of 5mentorMd. Marufuzzaman2-Jun-12 23:45 
GeneralExactly what I needed. That must be a 5'ermemberZeedijkMike10-Apr-12 8:43 
Questiongoodmemberflyicing22-Mar-12 15:07 
QuestionMdiParentmemberMember 824571817-Jan-12 18:58 
AnswerRe: MdiParentmemberkavitesh17-Jan-12 19:58 
GeneralReally good code examplememberJohn Mealing12-Jan-12 8:13 
QuestionGood effortsmemberUma Shankar Patel6-Jan-12 22:54 
GeneralMy vote of 5memberUma Shankar Patel6-Jan-12 22:54 
GeneralMy vote of 4memberMember 808650415-Jul-11 14:09 
GeneralRe: My vote of 4memberkavitesh25-Jul-11 9:51 
GeneralMy Vote of 5memberRaviRanjankr17-May-11 1:10 
GeneralRe: My Vote of 5memberkavitesh25-Jul-11 9:51 
GeneralMy vote of 4memberSharique uddin Ahmed Farooqui18-Jan-11 0:42 
GeneralRe: My vote of 4memberkavitesh25-Jul-11 9:51 
GeneralA wierd issuememberSharique uddin Ahmed Farooqui18-Jan-11 0:41 
GeneralMy vote of 5memberSharique uddin Ahmed Farooqui14-Dec-10 1:43 
GeneralVary easy to implementmemberdev4ever9-Dec-10 22:33 
GeneralMy vote of 5memberdev4ever9-Dec-10 22:32 
GeneralMy vote of 5member_clem30-Nov-10 7:54 
GeneralMy vote of 10member_clem30-Nov-10 7:53 
GeneralRe: My vote of 10memberkavitesh30-Nov-10 10:03 
GeneralMy vote of 5memberDonaldKnuth9-Nov-10 15:52 
GeneralMy vote of 4memberAlexB475-Nov-10 6:19 
Generalnice & easymemberbguyb20-Jun-10 21:08 
GeneralSupplied project code didn't work in Visual Studio 2005memberDariusRoch1-May-10 5:14 
Generalneed helpmemberAshishGupta030518-Mar-10 5:44 
GeneralRe: need helpmemberkavitesh19-Mar-10 6:31 
GeneralRe: need helpmemberAshishGupta030519-Mar-10 20:51 
GeneralRe: need helpmemberkavitesh29-Mar-10 20:04 
GeneralNice one.. !.memberjafarmlp19-Oct-09 3:27 
GeneralMy vote of 1memberDima Pasko7-Sep-09 11:01 
GeneralRe: My vote of 1memberCyber_8626-Oct-09 11:02 
GeneralRe: My vote of 1memberkavitesh27-Oct-09 7:20 
GeneralRe: My vote of 1 [modified]memberkavitesh28-Oct-09 4:01 
GeneralGood!memberGianni Gardini18-Aug-09 0:54 
GeneralMore clarificationmemberMd. Marufuzzaman6-Jul-09 19:38 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 8 Jul 2009
Article Copyright 2009 by kavitesh
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid