Click here to Skip to main content
15,887,267 members
Articles / Desktop Programming / Windows Forms
Article

SplashForm - A Splash Window Form

Rate me:
Please Sign up or sign in to vote.
4.56/5 (22 votes)
17 Feb 20052 min read 225.8K   5K   119   36
This article is about a class that extends Windows Forms to create splash screens and About dialogs.

Image 1

Introduction

I had written an article CSplash - A Splash Window Class about displaying splash screens using Win32 APIs. This article is about how the same thing is accomplished in .NET framework. This form can also be used for About dialogs.

Preparing the Image

First, create the image you would like to show as the splash, in your favorite image editor. Then choose the part of the image you would not like to be rendered on the screen, and give it a particular color that does not occur anywhere else on the image. For an example, if your image is a red disc with some logo or text inside it in blue, then fill all the region outside the circle with a color like green (anything other than red and blue).

Using SplashForm

The interface of the class is very simple. At the start of your application, call the static method StartSplash and specify the bitmap file path and the color on it to be made transparent. This creates and shows the splash form in a new thread so that control immediately returns to your application and it can proceed with other initialization.

C#
using System;
using Abhinaba.Splasher;
using System.Drawing;

SplashForm.StartSplash(@".\splash.bmp", 
        Color.FromArgb(128, 128, 128));

Once all initialization is complete, call the static method CloseSplash to close the splash form.

C#
SplashForm.CloseSplash();

To show the splash screen as an About dialog, use the ShowModal method.

C#
SplashForm.ShowModal(@".\splash.bmp", 
             Color.FromArgb(128, 128, 128));

Under the hood

In StartSplash, a new thread is created which calls the method MySplashThreadFunc.

C#
// Create and Start the splash thread
Thread InstanceCaller = new Thread(new ThreadStart(MySplashThreadFunc));
InstanceCaller.Start();

This method creates the splash form and shows it in a new thread.

C#
private static void MySplashThreadFunc()
{
    m_instance = new SplashForm(m_imageFile, m_transColor);
    m_instance.TopMost = false;
    m_instance.ShowDialog();
}

The splash form constructor then prepares the form for transparency and then loads the image:

C#
public SplashForm(String imageFile, Color col)
{
    this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
    this.ShowInTaskbar = false;
    this.TopMost = true;

    // make form transparent
    this.TransparencyKey = this.BackColor;

    // tie up the events
    //...
    
    // load and make the bitmap transparent
    m_bmp = new Bitmap(imageFile);
    m_bmp.MakeTransparent(col);

    // resize the form to the size of the iamge
    this.Width = m_bmp.Width;
    this.Height = m_bmp.Height;

    // center the form
    this.StartPosition = 
       System.Windows.Forms.FormStartPosition.CenterScreen;

    // thread handling. Used because the window
    // will be closed from a different thread
    m_delegateClose = new DelegateCloseSplash(InternalCloseSplash);}

On the Paint event, the loaded image is displayed.

C#
private void SplashForm_Paint(object sender, 
               System.Windows.Forms.PaintEventArgs e)
{
    e.Graphics.DrawImage(m_bmp, 0,0);
}

To close the form, the CloseSplash method must be called. The splash form has been created and is running in a different thread. So it is not possible to directly call Close on it. For this, the following code is used:

C#
public delegate void DelegateCloseSplash();
private DelegateCloseSplash m_delegateClose;

public SplashForm(String imageFile, Color col)
{
    // ...
    m_delegateClose = new DelegateCloseSplash(InternalCloseSplash);
    // ...
}

public static void CloseSplash()
{
    m_instance.Invoke(m_instance.m_delegateClose);
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
I just love coding. I started programming in 1995 with BASIC and then moved through Cobol, Pascal, Prolog, C, C++, VB, VC++ and now C#/.NET.

I received a Bachelor of Technology degree in Computer Science from University of Calcutta in 2001.

I worked for some time in Texas Instruments, Adobe Systems and now in Microsoft India Development Center in the Visual Studio Team Systems.

I am from the City of Joy, Kolkata in India, but now live and code Hyderabad.

Comments and Discussions

 
GeneralRe: nice, but... Pin
Mikael Wiberg17-Feb-05 20:25
Mikael Wiberg17-Feb-05 20:25 
GeneralRe: nice, but... Pin
Baseman999926-Feb-05 8:00
professionalBaseman999926-Feb-05 8:00 
GeneralRe: nice, but... Pin
shmulyeng1-Aug-05 2:32
shmulyeng1-Aug-05 2:32 
GeneralRe: nice, but... Pin
Paul Conrad31-Dec-05 6:38
professionalPaul Conrad31-Dec-05 6:38 
GeneralRe: nice, but... Pin
Colin Angus Mackay31-Dec-05 7:31
Colin Angus Mackay31-Dec-05 7:31 
QuestionWhat about JPG, GIF etc.. Pin
Simon Hughes17-Feb-05 1:37
Simon Hughes17-Feb-05 1:37 
AnswerRe: What about JPG, GIF etc.. Pin
Arun Bhalla24-Feb-05 11:58
Arun Bhalla24-Feb-05 11:58 
GeneralRe: What about JPG, GIF etc.. Pin
KriscRPI24-Feb-05 17:59
KriscRPI24-Feb-05 17:59 
GeneralRe: What about JPG, GIF etc.. Pin
abhinaba24-Feb-05 18:12
abhinaba24-Feb-05 18:12 
GeneralRe: What about JPG, GIF etc.. Pin
iowhfojfljLEJFSFLJafa19-Aug-07 16:06
iowhfojfljLEJFSFLJafa19-Aug-07 16:06 
AnswerRe: What about JPG, GIF etc.. Pin
abhinaba24-Feb-05 18:07
abhinaba24-Feb-05 18:07 

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.