WinForms 文本框的“KeyPress”事件丢失?

问题描述 投票:0回答:4

我正在尝试在文本框(WinForm)中添加“KeyPress”事件

this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(CheckKeys);

这是“CheckKeys”内部:

private void CheckKeys(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
    if (e.KeyChar == (char)13)
    {
        // Enter is pressed - do something

    }
}

这里的想法是,一旦文本框获得焦点并按下“Enter”按钮,就会发生一些事情......

但是,我的机器找不到“KeyPress”事件。 我的代码有问题吗?

更新:

我还尝试使用 KeyDown 而不是 KeyPress:

private void textBox1_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{

    if (e.Key == Key.Return)

        // Enter is pressed - do something
    }
}

仍然无法工作...

c# winforms textbox keyboard-events
4个回答
11
投票

您正在混合类库,请勿在 WPF 项目中使用 Windows 窗体类。 让它看起来像这样:

  public partial class Window1 : Window {
    public Window1() {
      InitializeComponent();
      this.textBox1.KeyDown += new KeyEventHandler(textBox1_KeyDown);
    }

    private void textBox1_KeyDown(object sender, KeyEventArgs e) {
      if (e.Key == Key.Enter) {
        MessageBox.Show("Enter!");
        e.Handled = true;
      }
    }
  }

5
投票

您看过KeyPress上的

文档
吗?它特别指出 KeyPress 事件不是由非字符键引发的;但是,非字符键确实会引发 KeyDown 和 KeyUp 事件。使用这些事件之一应该可以。


0
投票

往这边走--->>

  1. 搜索Form/panel/groupbox/parent Control下的控件

  2. 然后找到Textbox类型的子控件

  3. 现在将 KeyPressEventHandler 添加到找到的文本框控件

  4. 请参考图片截图了解如何调用KeyPressEventHandler

  5. 代码如下:

    foreach (Control c in this.Controls[0].Controls) //这必须是文本框的容器,(form,panel,groupbox) { if (c.GetType() == typeof(System.Windows.Forms.TextBox)) { c.KeyPress += new KeyPressEventHandler(textboxes_KeyPress); } }

search controls under the Form / panel / groupbox/ parent Control
then find child control who is type of Textbox
NOW adding to a KeyPressEventHandler to that found Text Box control


-4
投票

尝试按照以下步骤操作,它会起作用,因为我已经测试过了。

  1. 选择文本框,右键单击它,然后单击属性。
  2. 单击事件,然后双击 KeyPress
  3. 然后输入以下代码。

    private void textBox2_KeyPress(object sender, KeyPressEventArgs e)  
    {  
        if (e.KeyChar == (char)13)  
        {            
            //press Enter do Something Like i have messagebox below to show "wow"
            MessageBox.Show("wow"); 
        }
        else
        {
        }
    }
    
© www.soinside.com 2019 - 2024. All rights reserved.