文本框KeyPress事件
本文关键字:事件 KeyPress 文本 | 更新日期: 2023-09-27 18:22:25
我的文本框只允许小数和'+'它只允许1个小数"12.332"我需要在"+"之前允许1个十进制,在"+"之后允许1个十进位。例如,我有12.43+12.23,我不能键入12(.),因为我只允许一个十进制。我使用Split方法在之前和之后获得2个部分
这是我的代码
// checks to make sure only 1 decimal is allowed
if (e.KeyChar == 46)
{
if ((sender as TextBox).Text.IndexOf(e.KeyChar) != -1)
e.Handled = true;
}
这是我的方法
if(textBox1.Text.Contains('+')==true )
{
string Value = textBox1.Text;
string[] tmp = Value.Split('+');
string FirstValu = tmp[1];
string SecValu = tmp[0];
}
如何将方法与事件一起使用,以允许在"+"后再放一个小数位
我想使用两个文本框,就像有人在评论中说的那样,但如果你想固执的话,这里有一个函数可以在文本框中的文本更改时调用的事件中运行。
void textbox_textChanged(object sender, EventArgs e)
{
string text = textBox.Text;
int pointCounter = 0;
int addCounter =0
string temp = "";
string numbers = "0123456789";
for(int i =0;i<text.Length;i++)
{
bool found = false;
for(int j = 0;j<numbers.Length;j++)
{
if(text[i]==numbers[j])
{
temp+=text[i];
found = true;
break;
}
}
if(!found)
{
if('.' == text[i])
{
if(pointCounter<1)
{
pointCounter++;
temp+=text[i];
}
}else
if('+' == text[i])
{
if(addCounter<1)
{
pointCounter=0;
addCounter++;
temp+=text[i];
}
}
}
}
textBox.text = temp;
}
我建议使用Regex来验证您的文本框。我还建议使用文本框验证事件会比使用Leave事件更好。以下是在Validating事件中使用正则表达式的示例:
private void textBox1_Validating(object sender, CancelEventArgs e)
{
TextBox tbox = (TextBox)sender;
string testPattern = @"^[+-]?[0-9]*'.?[0-9]+ *[+-]? *[0-9]*'.?[0-9]+$";
Regex regex = new Regex(testPattern);
bool isTextOk = regex.Match(tbox.Text).Success;
if (!isTextOk)
{
MessageBox.Show("Error, please check your input.");
e.Cancel = true;
}
}
您将在System.Text.RegularExpressions
命名空间中找到Regex类。还要确保您的文本框的CausesValidation
属性设置为true。
作为一种替代方案,您可能还想考虑使用MaskedTextBox类。