PKHeX/Misc/SplashScreen.cs
Kurt bf7cd278cc Refactoring
Refactoring complete (for now).
2015-03-10 18:44:51 -07:00

29 lines
No EOL
975 B
C#

using System.Timers;
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;
myTimer.Interval = 50; // milliseconds per trigger interval
myTimer.Start();
}
public void DisplayTimeEvent(object source, ElapsedEventArgs e)
{
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(); }
else Close();
}
}
}