首页 > 代码库 > Windows Form小技巧

Windows Form小技巧

 

在TextBox获取焦点时,如果按下Enter或者Esc键会有让人很烦躁的错误提示音,在你的Form类中加入这个函数会有帮助。

protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
if (keyData =http://www.mamicode.com/= Keys.Enter || keyData == Keys.Escape) return true;
return base.ProcessCmdKey(ref msg, keyData);
}

Windows Form小技巧