程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# KeyUp事宜中MessageBox的回車(Enter)鍵回調成績處理計劃

C# KeyUp事宜中MessageBox的回車(Enter)鍵回調成績處理計劃

編輯:C#入門知識

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裡將不會再湧現回車鍵回調的成績。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved