|
@@ -885,7 +885,8 @@ namespace MOKA_Factory_Tools
|
|
|
Onlinemode();
|
|
|
}
|
|
|
|
|
|
- SNText.Text = "";
|
|
|
+ // 抄写成功后才清空;
|
|
|
+ //SNText.Text = "";
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -923,12 +924,13 @@ namespace MOKA_Factory_Tools
|
|
|
{
|
|
|
if (textBox.InvokeRequired)
|
|
|
{
|
|
|
- textBox.BeginInvoke(new Action(() => { textBox.Enabled = true; textBox.Focus(); }));
|
|
|
+ textBox.BeginInvoke(new Action(() => { textBox.Enabled = true; textBox.Text = ""; textBox.Focus(); }));
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
textBox.Enabled = true;
|
|
|
textBox.Focus();
|
|
|
+ textBox.Text = "";
|
|
|
}
|
|
|
}
|
|
|
|