C# KeyUp事宜中MessageBox的回車(Enter)鍵回調成績處理計劃。本站提示廣大學習愛好者:(C# KeyUp事宜中MessageBox的回車(Enter)鍵回調成績處理計劃)文章只能為提供參考,不一定能成為您想要的結果。以下是C# KeyUp事宜中MessageBox的回車(Enter)鍵回調成績處理計劃正文
本文解析了C# KeyUp事宜中MessageBox的回車(Enter)鍵湧現回調成績的處理方法。詳細成績以下:
在一個窗體上有一個名為txtTest的Textbox控件,假如在此控件的KeyUp事宜中有按回車鍵 彈出messagebox新聞框,那末在彈出的messagebox中假如按回車鍵去履行messagebox上的按鈕,再回車鍵還會在KeyUp事宜中持續履行。一向按回車鍵的話將輪回停止。
代碼以下所示:
private void txtTest_KeyUp(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { if (MessageBox.Show("輸出完了?", this.Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.Yes) { this.lblTest.Text = this.txtTest.Text; } } }
為了不這類情形湧現,可以把KeyUp裡的法式移到KeyDown事宜中便可
private void txtTest_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { if (MessageBox.Show("輸出完了?", this.Text, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == System.Windows.Forms.DialogResult.Yes) { this.lblTest.Text = this.txtTest.Text; } } }
如許在KeyDown裡將不會再湧現回車鍵回調的成績。