2015-09-24 00:01:15 -07:00
|
|
|
|
using System.Threading;
|
2017-06-17 18:37:19 -07:00
|
|
|
|
using System.Threading.Tasks;
|
2014-06-28 14:22:05 -07:00
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2017-01-07 23:54:09 -08:00
|
|
|
|
namespace PKHeX.WinForms
|
2014-06-28 14:22:05 -07:00
|
|
|
|
{
|
|
|
|
|
public partial class SplashScreen : Form
|
|
|
|
|
{
|
2015-09-20 20:34:09 -07:00
|
|
|
|
public SplashScreen()
|
2014-06-28 14:22:05 -07:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2017-06-17 18:37:19 -07:00
|
|
|
|
new Task(() =>
|
2015-09-24 00:01:15 -07:00
|
|
|
|
{
|
2017-06-17 18:37:19 -07:00
|
|
|
|
while (!Main.IsInitialized)
|
2015-09-24 00:01:15 -07:00
|
|
|
|
Thread.Sleep(50);
|
|
|
|
|
|
2018-05-12 19:07:32 -07:00
|
|
|
|
Invoke((MethodInvoker)Close);
|
2015-09-24 00:01:15 -07:00
|
|
|
|
}).Start();
|
2014-06-28 14:22:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-01-31 10:36:06 -08:00
|
|
|
|
}
|