如何按[Enter]键捕获Enter但不至Fall线?

发布于 2024-11-03 19:06:05 字数 337 浏览 0 评论 0原文

如何按 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尛丟丟 2024-11-10 19:06:05

查看我在这篇文章中的回答:

检查何时按下箭头键

您必须将 KeyPreview 事件激活为 true 才能监听按键事件,

因此对于您的问题:

    Private Sub frm_YourForm(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
    If e.KeyChar = Microsoft.VisualBasic.ChrW(Keys.Return) Then
        e.Handled = True
    End If
End Sub

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 Event

So for your problem:

    Private Sub frm_YourForm(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles Me.KeyPress
    If e.KeyChar = Microsoft.VisualBasic.ChrW(Keys.Return) Then
        e.Handled = True
    End If
End Sub
攒眉千度 2024-11-10 19:06:05

尝试

if (e.KeyCode == Keys.Enter)
{
e.SuppressKeyPress = true;
}

Try

if (e.KeyCode == Keys.Enter)
{
e.SuppressKeyPress = true;
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文