歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

C# 鍵盤輸入回車鍵以點擊按鈕

把Form的KeyPreview設為true

然後設置KeyDown,KeyUp或KeyPress事件。在KeyDown事件中截獲。

this.KeyDown += new KeyEventHandler(textBox1_KeyDown);

        private void textBox1_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Enter)
            {
                this.L_login.Focus();
                L_login_Click(this,new EventArgs());
            }
        }

Copyright © Linux教程網 All Rights Reserved