# SplashScreen **Repository Path**: sclshu3714/SplashScreen ## Basic Information - **Project Name**: SplashScreen - **Description**: Loading screen for winform applications - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-15 - **Last Updated**: 2021-07-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SplashScreen - Loading screen for winform applications SplashHandler.Start(); Thread.Sleep(1000); // Give time to thread start... otherwise nothing works SplashHandler.BringTop(); SplashHandler.ChangeText("Carregando..."); Thread.Sleep(2000); SplashHandler.ChangeText("Bla Bla..."); Thread.Sleep(2000); SplashHandler.ChangeText("Tra la la..."); Thread.Sleep(2000); Application.Run(new Form1()); // Place SplashHandler.Close() inside onLoad event