vote up 2 vote down star

In a C# windows forms application. I have a splash screen with some multi-threaded processes happening in the background. What I would like to do is when I display the splash screen initially, I would like to have it appear to "fade in". And then, once all the processes finish, I would like it to appear as though the splash screen is "fading out". I'm using C# and .NET 2.0. Thanks.

flag

5 Answers

vote up 8 vote down check

You could use a timer to modify the Form.Opacity level.

link|flag
vote up 3 vote down

When using Opacity property have to remember that its of type double, where 1.0 is complete opacity, and 0.0 is completely transparency.

   private void fadeTimer_Tick(object sender, EventArgs e)
    {
        this.Opacity -= 0.01;

        if (this.Opacity <= 0)
        {
            this.Close();
        }            
    }
link|flag
This is fade-out, not fade-in. – Joe Hildebrand Sep 17 '08 at 15:50
If the timer were set to a fast 50ms, and Opacity is a percentage, then wouldn't this fade-out take about 8 minutes? – mackenir Nov 4 at 12:55
@mackenir If your timer is 50ms/tick then it will take 5 seconds. (1.0 / 0.01) = 100 * 50ms = 5000ms => 5sec – aarontfoley Nov 5 at 14:19
2  
Hi @aarontfoley, I've taken the liberty of editing your answer to remove the mention of Opacity being a 'percentage', as it is contradicted by the text that follows (Opacity being a value between 0 and 1). Feel free to revert and make the change yourself, or not. I know how annoying it can be to have your answer edited by somebody else. Cheers. – mackenir Nov 9 at 13:07
@mackenir np, thanks for the edit. – aarontfoley Nov 10 at 17:15
vote up -1 vote down
While(this.Opacity !=0)
{
    this.Opacity -= 0.5;
    Thread.Sleep(50);//This is for the speed of the opacity... and will let the form redraw
}
link|flag
1  
so you're "fading" out in 2 iterations? I can hardly call that a fade out... more so, I believe your Thread.Sleep will block the UI thread, thus preventing it from updating. – daniel Nov 9 at 13:19
vote up 3 vote down

You can use the Opacity property for the form to alter the fade (between 0.0 and 1.0).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.