rm 重写ProcessCmdKey: 解决enter同时Tab 的问题
2009-12-28 10:43:38 来源:WEB开发网核心提示:PRotected override bool ProcessCmdKey(ref Message msg, Keys keyData){ if (keyData == Keys.Enter && ((!(ActiveControl is System.Windows.Forms.TextBox) || !((Sys
PRotected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
if (keyData == Keys.Enter && ((!(ActiveControl is System.Windows.Forms.TextBox)
|| !((System.Windows.Forms.TextBox)ActiveControl).AcceptsReturn)))
{
SendKeys.SendWait("{Tab}");
return true;
}
if (keyData == ( Keys.Enter | Keys.Shift))
{
SendKeys.SendWait("+{Tab}");
return true;
}
return base.ProcessCmdKey(ref msg, keyData);
}
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/wyf1022/archive/2009/12/28/5089695.aspx
{
if (keyData == Keys.Enter && ((!(ActiveControl is System.Windows.Forms.TextBox)
|| !((System.Windows.Forms.TextBox)ActiveControl).AcceptsReturn)))
{
SendKeys.SendWait("{Tab}");
return true;
}
if (keyData == ( Keys.Enter | Keys.Shift))
{
SendKeys.SendWait("+{Tab}");
return true;
}
return base.ProcessCmdKey(ref msg, keyData);
}
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/wyf1022/archive/2009/12/28/5089695.aspx
Tags:rm 重写 ProcessCmdKey
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接