PKHeX/PKHeX.WinForms/Misc/SplashScreen.cs
Kurt ee15a15c9e Minor tweaks
Lower contest stat row
Lower IsNoble & IsAlpha
Prevent closing Splash Screen when interrupted by plugin dialogs
2022-02-08 21:46:16 -08:00

22 lines
414 B
C#

using System.Windows.Forms;
namespace PKHeX.WinForms;
public partial class SplashScreen : Form
{
public SplashScreen() => InitializeComponent();
private bool CanClose;
private void SplashScreen_FormClosing(object sender, FormClosingEventArgs e)
{
if (!CanClose)
e.Cancel = true;
}
public void ForceClose()
{
CanClose = true;
Close();
}
}