Fade splash screen in and out

后端 未结 4 484
失恋的感觉
失恋的感觉 2021-01-19 14:43

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

4条回答
  •  逝去的感伤
    2021-01-19 15:26

    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
    }
    

提交回复
热议问题