0

我没有找到可以验证我粘贴的每个字符的事件。我需要使用 ASCII 码进行验证,因为我想处理 ' 和 "

按键事件:

private void txt_KeyPress(object sender, KeyPressEventArgs e)
{    
    if( e.KeyChar == 34 || e.KeyChar == 39)//34 = " 39 = '
    {
       e.Handled = true; 
    }

}

简单的解决方案:

private void txt_TextChanged(object sender, EventArgs e)
    {
        string text = txt.Text;
        while (text.Contains("\"") || text.Contains("'")) text = text.Replace("\"", "").Replace("'", "");
        txt.Text = text;
    }
4

1 回答 1

0

您可以使用访问剪贴板文本,Clipboard.GetText()并且可以通过覆盖控件的 WndProc 并观察消息 0x302 (WM_PASTE) 来拦截低级 Windows 消息。

namespace ClipboardTests
{
    using System.Windows.Forms;

    public partial class Form1 : Form
    {
        private MyCustomTextBox MyTextBox;
        public Form1()
        {
            InitializeComponent();
            MyTextBox = new MyCustomTextBox();
            this.Controls.Add(MyTextBox);
        }
    }

    public class MyCustomTextBox : TextBox
    {
        protected override void WndProc(ref Message m)
        {
            if (m.Msg == 0x302 && Clipboard.ContainsText())
            {
                var cbText = Clipboard.GetText(TextDataFormat.Text);
                // manipulate the text
                cbText = cbText.Replace("'", "").Replace("\"", "");
                // 'paste' it into your control.
                SelectedText = cbText;
            }
            else
            {
                base.WndProc(ref m);
            }
        }
    }
}
于 2013-09-20T12:17:16.443 回答