0

我有一个小问题。制作十六进制掩码后,我无法使用Ctrl+ C/复制/粘贴V。如果我右键单击文本框,我可以粘贴。但我希望能够按Ctrl+ V

如果我删除十六进制掩码,Ctrl+ C/V工作正常。

这是一些代码:

private void maskedTextBox1(Object sender, System.Windows.Forms.KeyPressEventArgs e)
    {
        // this will allow a-f, A-F, 0-9, "," 
        if (!System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "^[0-9a-fA-F,V,C,'\b']+$"))
            {
                e.Handled = true;
            }

        // if keychar == 13this ill allow <ENTER>
        if (e.KeyChar == (char)13)
            {
            button1_Click(sender, e);
            }
        // I thought I could fix it with the lines below but it doesnt work
       /* if (e.KeyChar == (char)22)
        {
            // <CTRL + C> 
            e.Handled = true;
        }
        if (e.KeyChar == (char)03)
        {
            // is <CTRL + V>
            e.Handled = true;
        }*/
        //MessageBox.Show(((int)e.KeyChar).ToString());
    }

有人可以给我一些提示吗?

4

3 回答 3

1

您需要使用 KeyDown 事件处理程序而不是 KeyPressed 来捕获这些击键。KeyPressed 仅用于键入键。

MaskedTextBox 在这里并不理想,您也可以使用常规 TextBox 来实现。使用 Validating 事件来格式化数字并检查范围。例如:

    private void textBox1_KeyPress(object sender, KeyPressEventArgs e) {
        bool ok = e.KeyChar == 8;  // Backspace
        if ("0123456789ABCDEF".Contains(char.ToUpper(e.KeyChar))) ok = true;
        if (!ok) e.Handled = true;
    }

    private void textBox1_Validating(object sender, CancelEventArgs e) {
        int value;
        if (textBox1.Text.Length > 0) {
            if (!int.TryParse(this.textBox1.Text, System.Globalization.NumberStyles.HexNumber, null, out value)) {
                this.textBox1.SelectAll();
                e.Cancel = true;
            }
            else {
                textBox1.Text = value.ToString("X8");
            }
        }
    }
于 2010-09-11T19:06:08.693 回答
0

可能会MaskedTextBox阻止Ctrl+V调用(否则您可以轻松绕过掩码)。就个人而言,我不会使用蒙面文本框,而是单独验证输入,并在输入有问题时提醒用户。在MaskedTextBox一般使用中存在缺点,因为它不是用户习惯的正常组件,用户更习惯于被告知输入错误。

于 2010-09-11T19:05:48.303 回答
0

你有过:

if (e.KeyChar == (char)03)
    {
        // is <CTRL + V>
        e.Handled = true;
    }*/

根据CiscoCtrl的说法, +V的 值22应该是:

if (!System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "^[0-9a-fA-F,V,C,'\b']+$") && e.KeyChar != 22)
        {
            e.Handled = true;
        }
于 2014-10-06T16:20:12.830 回答