-1

我正在尝试学习 C# 中的 GUI 编程,我有以下关于 C# 中 TextBox 的默认代码的问题:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication34
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {
         // Textbox programming goes here
        }
    }
}

现在,当我想尝试与 TexBox 编程有点不同的东西时,类似于此代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication20
{
    public partial class Form1 : Form
    {
    public Form1()
    {
        InitializeComponent();
    }

    private void textBox1_KeyDown(object sender, KeyEventArgs e)
    {
        //
        // Detect the KeyEventArg's key enumerated constant.
        //
        if (e.KeyCode == Keys.Enter)
        {
        MessageBox.Show("You pressed enter! Good job!");
        }
        else if (e.KeyCode == Keys.Escape)
        {
        MessageBox.Show("You pressed escape! What's wrong?");
        }
    }
    }
}

我无法运行代码,因为 TextBox 的状态是

textBox1_KeyDown

而不是默认的

textBox1_TextChanged

现在我的问题是,如何将 TextBox 事件处理程序从默认值更改为另一种?

4

2 回答 2

6

KeyDown并且TextChanged是不同的事件

不要双击文本框来输入事件代码,而是选择属性中的事件选项卡,然后双击要为其编写代码的事件。

于 2012-05-01T12:33:46.127 回答
1

我认为您要寻找的是 OnPreviewKeyDown 事件......它会告诉您接下来会发生什么。如果您想绕过它的活动,请将“Handled”属性设置为 true。

protected override void OnPreviewKeyDown(System.Windows.Input.KeyEventArgs e)
{
   var ue = e.OriginalSource as FrameworkElement;

   if (e.Key == Key.Enter)
   { 
      MessageBox.Show("You pressed enter! Good job!");
      e.Handled = true;   // to tell event stack you've already taken care of this condition
   }
   else if (e.KeyCode == Keys.Escape)
      MessageBox.Show("You pressed escape! What's wrong?");
}
于 2012-05-01T13:14:29.867 回答