No longer allow the customer view screen to be closed outside of application exit.
This commit is contained in:
parent
3c8e380828
commit
b892dd78ab
@ -43,5 +43,10 @@ namespace QueueSys
|
||||
{
|
||||
RefreshCustomerView();
|
||||
}
|
||||
|
||||
private void frmCustomerView_FormClosing(object sender, FormClosingEventArgs e)
|
||||
{
|
||||
e.Cancel = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user