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 splas
While(this.Opacity !=0) { this.Opacity -= 0.05; Thread.Sleep(50);//This is for the speed of the opacity... and will let the form redraw }