private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
 {
     //I had trouble with restoring hidden clients, so here i am.
     characterHelper.ShowEveryClient();
     try
     {
         startHandler.UnRegister();
         stopHandler.UnRegister();
     }
     catch (Exception ex)
     {
         // TODO: Do stuff with exception
     }
 }
Exemple #2
0
 private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
 {
     //I had trouble with restoring hidden clients, so here i am.
     characterHelper.ShowEveryClient();
 }