如何按[Enter]键捕获Enter但不至Fall线?
如何按 Enter - 抓住 Enter 但不至 Fall 线?
例如,我有这个:
private void txtPlace_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
// do somthing
}
}
我不想跌倒,
我在 Windows-Mobile 上工作 - C#
提前致谢
how to press Enter - catch the Enter but not to Fall line ?
for example, i have this:
private void txtPlace_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
// do somthing
}
}
and i don't want to Fall line
i work on Windows-Mobile - C#
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看我在这篇文章中的回答:
检查何时按下箭头键
您必须将
KeyPreview
事件激活为 true 才能监听按键事件,因此对于您的问题:
Checkout my answer from this Post:
Check when arrow key are pressed
You have to activate your
KeyPreview
event to true to listen to your keypress EventSo for your problem:
尝试
if (e.KeyCode == Keys.Enter)
{
e.SuppressKeyPress = true;
}
Try
if (e.KeyCode == Keys.Enter)
{
e.SuppressKeyPress = true;
}