Description:
There is a lingering process once the window closes. Currently requires manual closure.
The following lines don't seem to be helping manage the process on closure:
private void formClosingEvent(object sender, FormClosingEventArgs e)
{
HandleBackgroundWorker_Close();
backgroundWorker1.Dispose();
_stillOpen = false;
//terminate the current process (Further means of freeing up the resources, in case the others didnt work)
Environment.Exit(0);
}
Description: There is a lingering process once the window closes. Currently requires manual closure. The following lines don't seem to be helping manage the process on closure: