What Is the EXIT Procedure?
"Exit" is a computer program term.
drop out
(Computer program term)
Right!
- "Exit" is a computer program term.
- Source code:
- Set the form property KeyPreview = True.
- private void Form1_KeyUp (object sender, KeyEventArgs e)
- {
- if (e.KeyData == Keys.Escape) Application.Exit ();
- }