1. 增加 删除热键前询问

This commit is contained in:
筱傑 2021-04-28 22:39:09 +08:00
parent 2314afa9f3
commit 2ea8cbf725

View File

@ -119,6 +119,8 @@ namespace KeyGo
/// 删除热键项 /// 删除热键项
/// </summary> /// </summary>
private void BtnDel_Click(object sender, EventArgs e) private void BtnDel_Click(object sender, EventArgs e)
{
if (MessageBox.Show("是否确定删除该热键?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{ {
try try
{ {
@ -132,4 +134,5 @@ namespace KeyGo
} }
} }
} }
}
} }