1
Thread th = new Thread(new ThreadStart(MainForm.StartSplash));
2
th.Priority = ThreadPriority.AboveNormal;
3
th.Start();
4
Thread.Sleep(0);
5
6
base.SetStyle(ControlStyles.OptimizedDoubleBuffer | ControlStyles.AllPaintingInWmPaint | ControlStyles.UserPaint, true);
7
this.Initialize();

2

3

4

5

6

7
