C# 中的文本框 GUI 编程

本文关键字:GUI 编程 文本 | 更新日期: 2023-09-27 18:32:45

我正在尝试学习 C# 中的 GUI 编程,我对 C# 中文本框的默认代码有以下问题:

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?");
        }
    }
    }
}

我无法运行代码,并且由于文本框的状态是

textBox1_KeyDown

而不是默认的

textBox1_TextChanged

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

C# 中的文本框 GUI 编程

KeyDownTextChanged是不同的事件

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

我想你想找的是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?");
}