private bool Closing = false;
Classes Classes = new Classes();
public MainForm()
{
InitializeComponent();
Application.ApplicationExit += new EventHandler(this.Application_ApplicationExit);
}
private void Application_ApplicationExit(object? sender, EventArgs e)
{
Classes.Spark.DebugLog("The app is currently being closed!");
}
private bool Closing = false;
Classes Classes = new Classes();
public MainForm()
{
InitializeComponent();
Application.ApplicationExit += new EventHandler(this.Application_ApplicationExit);
}
private void Application_ApplicationExit(object? sender, EventArgs e)
{
Classes.Spark.DebugLog("The app is currently being closed!");
}