fixed bug

This commit is contained in:
XAS-712 2019-03-03 11:04:58 +08:00
parent 7180efbece
commit fad698e688
2 changed files with 6 additions and 0 deletions

View File

@ -1062,6 +1062,7 @@
this.buttonEStop.TabIndex = 13;
this.buttonEStop.Text = "停止";
this.buttonEStop.UseVisualStyleBackColor = true;
this.buttonEStop.Click += new System.EventHandler(this.buttonEStop_Click);
//
// groupBox14
//

View File

@ -1430,5 +1430,10 @@ namespace MifareOneTool
{
Properties.Settings.Default.NewScan = checkBoxNewScan.Checked;
}
private void buttonEStop_Click(object sender, EventArgs e)
{
buttonKill_Click(sender, e);
}
}
}