PKHeX/Misc/SplashScreen.cs

29 lines
975 B
C#
Raw Normal View History

using System.Timers;
2014-06-28 21:22:05 +00:00
using System.Windows.Forms;
namespace PKHeX
{
public partial class SplashScreen : Form
{
Form1 m_parent;
public SplashScreen(Form1 frm1)
{
InitializeComponent();
m_parent = frm1;
System.Timers.Timer myTimer = new System.Timers.Timer();
myTimer.Elapsed += DisplayTimeEvent;
2015-01-31 23:59:23 +00:00
myTimer.Interval = 50; // milliseconds per trigger interval
2014-06-28 21:22:05 +00:00
myTimer.Start();
}
public void DisplayTimeEvent(object source, ElapsedEventArgs e)
{
2015-01-31 18:36:06 +00:00
if (!m_parent.init)
if (L_Status.InvokeRequired) L_Status.Invoke((MethodInvoker)delegate { L_Status.Text = Form1.Status; });
else { L_Status.Text = Form1.Status; }
else
if (InvokeRequired && IsHandleCreated)
try { Invoke((MethodInvoker)Close); } catch { Close(); }
2015-01-31 18:36:06 +00:00
else Close();
2014-06-28 21:22:05 +00:00
}
}
2015-01-31 18:36:06 +00:00
}