WinForms文本框仅允许1到6之间的数字

时间:2015-03-30 18:19:11

标签: c# winforms textbox

我想限制我的WinForms文本框,因此它只允许输入1到6之间的数字。没有字母,没有其他符号或特殊字符,只有这些数字。

我该怎么做?

10 个答案:

答案 0 :(得分:1)

您可以将其放在文本框的KeyPress事件

private void textBox3_KeyPress(object sender, KeyPressEventArgs e)
{
  switch (e.KeyChar)
  {
    //allowed keys 1-6 + backspace and delete + arrowkeys
    case (char)Keys.Back:
    case (char)Keys.Delete:
    case (char)Keys.D0:
    case (char)Keys.D1:
    case (char)Keys.D2:
    case (char)Keys.D3:
    case (char)Keys.D4:
    case (char)Keys.D5:
    case (char)Keys.D6:
    case (char)Keys.Left:
    case (char)Keys.Up:
    case (char)Keys.Down:
    case (char)Keys.Right:
        break;
    default:
        e.Handled = true;
        break;
  }
}

如果按下的键是(numpad)1-6,则退格键,删除键或箭头键允许它们。 如果它是一个不同的密钥,请不要放置它并说它已被处理。我在一个快速项目上测试了这段代码,它允许我使用小键盘1-6放置,不知道其他数字。如果其他人不起作用你只需要允许添加它们并且不测试箭头键,但只需要左右移动它们。

答案 1 :(得分:0)

添加限制: 0 6 并使用此功能:

private void txtField_KeyPress(object sender, KeyPressEventArgs e)
{
    if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) && (e.KeyChar != '.'))
            e.Handled = true;
    if ((e.KeyChar == '.') && ((sender as TextBox).Text.IndexOf('.') > -1))
        e.Handled = true;
  }

答案 2 :(得分:0)

如果您使用WPF,请创建自己的TextBox。如果您也需要处理Numpads,那么将它们添加到切换....

public class CustomTextBox : TextBox
    {
        public CustomTextBox()
        {
            KeyDown += OnKeyDown;
        }

    private void OnKeyDown(object sender, KeyEventArgs keyEventArgs)
    {
        switch (keyEventArgs.Key)
        {
            case Key.D0:
            case Key.D1:
            case Key.D2:
            case Key.D3:
            case Key.D4:
            case Key.D5:
            case Key.D6:
                keyEventArgs.Handled = false;
                break;
            default:
                keyEventArgs.Handled = true;
                break;
        }
    }
}

答案 3 :(得分:0)

以下正则表达式应该可以正常工作

Regex rgx = new Regex(@"^[1-6]+$");
rgx.IsMatch("1a23"); //Returns False
rgx.IsMatch("1234"); //Returns True;

您应该可以将它与ASP.Net Validations和WinForms一起使用

https://msdn.microsoft.com/en-us/library/3y21t6y4(v=vs.110).aspx

https://msdn.microsoft.com/en-us/library/az24scfc%28v=vs.110%29.aspx

请注意,在提交值后我建议进行验证,这可能不是您想要的。对我来说,问题在这里是模棱两可的。假设您正在使用ASP.Net并且您想要限制键入值,则按键事件解决方案先前的答案应该有效,但它们至少需要部分回发。如果您希望在没有回复的情况下处理它,则需要客户端脚本。

这是如何在客户端进行的示例:

Restricting input to textbox: allowing only numbers and decimal point

由于该示例适用于任何数字,因此您必须将其限制为数字1 - 6。

答案 4 :(得分:0)

这里有一个简单的WebForm C#,提交时代码隐藏,将验证正则表达式为0-6之间的数字。

<强> HTML

<div class="jumbotron">
    <h1>ASP.NET</h1>
    <p class="lead">
        <asp:TextBox runat="server" ID="tbForValidation"></asp:TextBox>
        <asp:Button runat="server" ID="btnSubmit" Text="Validate" OnClick="btnSubmit_Click" />
    </p>
</div>

代码背后:

 protected void btnSubmit_Click(object sender, EventArgs e)
        {
            Regex regularExpression = new Regex(@"^[0-6]$");

            if (regularExpression.IsMatch(tbForValidation.Text))
            {
                //Is matching 0-6
            }
            else
            {
                //Is not matching 0-6
            }
        }

我还建议您在向服务器发送请求之前在客户端运行RegEx验证。这不会为服务器创建任何不必要的请求,以便在文本框上进行简单验证。

<asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ErrorMessage="Invalid number" ValidationExpression="^[0-6]$" ControlToValidate="tbForValidation"></asp:RegularExpressionValidator>

答案 5 :(得分:0)

你试过SupressKeyPress吗?

if (e.KeyCode < Keys.D1 || e.KeyCode > Keys.D6 || e.Shift || e.Alt)
        {
            e.SuppressKeyPress = true;
        }

        if (e.KeyCode == Keys.Back)
        {
            e.SuppressKeyPress = false;
        }

如果你想改变你写的内容,第二个If可以按退格键。

答案 6 :(得分:0)

我会做这样的事情

private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
    if (e.KeyCode == Keys.D1 || e.KeyCode == Keys.D2 || e.KeyCode == Keys.D3 || e.KeyCode == Keys.D4 || e.KeyCode == Keys.D5 || e.KeyCode == Keys.D6)
        {
            e.Handled = true;
        }
    }

您也许可以允许使用控制按钮,例如退格

答案 7 :(得分:0)

试试这个:

private void textBox1_TextChanged(object sender, EventArgs e)
{
    int tester = 0;
    try
    {
        if (textBox1.Text != null)
        {
            tester = Convert.ToInt32(textBox1.Text);
            if (tester >= 30)
            {
                textBox1.Text = textBox1.Text.Substring(0, textBox1.Text.Length - 1);
                textBox1.Select(textBox1.Text.Length, 0);
            }
        }
     }
     catch (Exception)
     {
         if (textBox1.Text != null)
         {
             try
             {
                if (textBox1.Text != null)
                {
                    textBox1.Text = textBox1.Text.Substring(0, textBox1.Text.Length - 1);
                    textBox1.Select(textBox1.Text.Length, 0);
                }
             }
             catch (Exception)
             {
                 textBox1.Text = null;
             }
         }
     }
}

答案 8 :(得分:0)

使用regex @“^ [1-6] $”在文本框中验证此类输入。

答案 9 :(得分:0)

这会将你限制在1到6之间。 我不知道你想怎么用它。 因此,我只是给你提供限制的代码。 这是非常古老的,更像是平民。

首先,我做了一个表格:

enter image description here

然后我将以下代码添加到按钮:

int testValue;
// only numbers will drop into this block
if(int.TryParse(textBox1.Text, out testValue)){
// hard coded test for your desired values
    if(testValue == 1 || testValue == 2 || testValue == 3 || testValue == 4 || testValue == 5 || testValue == 6){
        // this is here just to give us proof of the return
        textBox1.Text = "Yep, 1 - 6";
    }
    else{
        // you can throw an exception here, popup a message, or populate as I did here.
        // this is here just to give us proof of the return 
        textBox1.Text = "Nope, not 1 - 6";
        }
    }
    // you can throw an exception here, popup a message, or populate as I did here.
else{
    textBox1.Text = "Not a number";
}

如果输入任何非数字,文本框将显示“非数字”。

1 - 6将显示“Yep,1 - 6”。

任何数字&lt;或者&gt; 1 - 6将为“Nope,而不是1 - 6”。

祝你好运!