是的,您需要 KeyPress 事件。或者更确切地说,覆盖 OnKeyPress。将 KeyDown 事件中的虚拟键代码映射到击键非常困难,您必须了解当前的键盘布局。查看ToUnicodeEx()的MSDN 文档,了解您遇到的问题。
您不必担心像 Alt+L 这样的按键组合。它们不会生成 KeyPress 事件。
这是一个例子。启动一个新的 Windows 窗体项目并使代码如下所示:
using System;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1 {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
StringBuilder mText = new StringBuilder();
protected override void OnKeyPress(KeyPressEventArgs e) {
if (e.KeyChar == '\b') {
if (mText.Length > 0) mText.Remove(mText.Length - 1, 1);
}
else mText.Append(e.KeyChar);
Invalidate();
}
protected override void OnPaint(PaintEventArgs e) {
TextFormatFlags fmt = TextFormatFlags.Left;
TextRenderer.DrawText(e.Graphics, mText.ToString(), this.Font, this.ClientRectangle, Color.Black, fmt);
}
}
}