I want to make it short: This is what I want to archieve WITHOUT clicking any buttons. When I change the opactiy in Form1_Load
or Form1_Shown
the application will NOT be shown to the user until my code finishes its thing.
Thats the code
for (int i = 0; i < 100; i++)
{
this.Opacity -= .05;
System.Threading.Thread.Sleep(50);
}
Can anyone tell me how to archieve my goal?