複製鏈接
請複製以下鏈接發送給好友

退出

(電腦程序術語)

鎖定
“退出”是一個電腦程序術語。
中文名
退出
類    型
電腦程序術語
源代碼:
設置窗體屬性KeyPreview=True。
private void Form1_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyData == Keys.Escape)Application.Exit();
}