No longer allow the customer view screen to be closed outside of application exit.

This commit is contained in:
kougyoku 2019-10-18 16:14:18 -07:00
parent 3c8e380828
commit b892dd78ab
1 changed files with 5 additions and 0 deletions

View File

@ -43,5 +43,10 @@ namespace QueueSys
{
RefreshCustomerView();
}
private void frmCustomerView_FormClosing(object sender, FormClosingEventArgs e)
{
e.Cancel = true;
}
}
}