我通过表单中的文本框接受用户的字符串值。然后将它用于对数据库表的查询,虽然它是一个字符串,但我要求输入的唯一字符是整数。
我尝试了各种方法,例如INT32
和TryParse
函数。但是,我在尝试IF ELSE
或TRY CATCH
时遇到问题,以防止执行任何操作,直到输入为“可接受”。
最简单的方法是,只允许将整数输入到文本框中,或者识别除整数之外的任何内容并使执行失败?
答案 0 :(得分:3)
是的,您可以使用int.TryParse
:
string selectSql = "SELECT * FROM SomeTable WHERE ID = @ID";
int id;
if (!int.TryParse(txtID.Text, out id))
MessageBox.Show("ID must be an integer.");
else
{
using (var myCon = new SqlConnection(connectionString))
using (var selectCommand = new SqlCommand(selectSql, myCon))
{
selectCommand.Parameters.AddWithValue("@ID", id);
myCon.Open();
using (var reader = selectCommand.ExecuteReader())
{
// do something with the records
}
}
}
您还可以使用NumericUpDown
control。
答案 1 :(得分:1)
使用NumericUpDown控件而不是TextBox
答案 2 :(得分:1)
我知道有三种可能的方法:
删除文本框的TextChanged事件中的无效字符:
private void txb_TextChanged(object sender, EventArgs e)
{
int selStart = txb.SelectionStart;
string result = txb.Text;
// remove all that aren't digits
result = Regex.Replace(result, @"[^0-9]", string.Empty);
txb.Text = result;
// move cursor
if (selStart > txb.Text.Length)
txb.Select(txb.Text.Length, 0);
else txb.Select(selStart, 0);
}
扩展TextBox控件并忽略用户按下的所有无效键
public class IntegerTextBox : TextBox
{
private Keys[] int_allowed = {
Keys.D1,
Keys.D2,
Keys.D3,
Keys.D4,
Keys.D5,
Keys.D6,
Keys.D7,
Keys.D8,
Keys.D9,
Keys.D0,
Keys.NumPad0,
Keys.NumPad1,
Keys.NumPad2,
Keys.NumPad3,
Keys.NumPad4,
Keys.NumPad5,
Keys.NumPad6,
Keys.NumPad7,
Keys.NumPad8,
Keys.NumPad9,
Keys.Back,
Keys.Delete,
Keys.Tab,
Keys.Enter,
Keys.Up,
Keys.Down,
Keys.Left,
Keys.Right
};
protected override void OnKeyDown(KeyEventArgs e)
{
base.OnKeyDown(e);
if (e.Modifiers == Keys.Control) return;
if (!int_allowed.Contains(e.KeyCode))
{
e.SuppressKeyPress = true;
}
}
}
}
处理KeyDown和/或KeyPress事件,如果按下了不允许的内容,则取消它
答案 3 :(得分:0)
您可以编写自己的继承自TextBox的类:
public class NumericTextBox : TextBox
{
protected override void OnKeyPress(KeyPressEventArgs e)
{
base.OnKeyPress(e);
var key = e.KeyChar + "";
if (key == "\b")
return;
double number;
string newText = Text.Remove(SelectionStart, SelectionLength).Insert(SelectionStart, key);
if (newText.Length == 1 && key == "-")
return;
if (!double.TryParse(newText, NumberStyles.Float, CultureInfo.InvariantCulture, out number))
{
e.Handled = true;
}
}
public double Value
{
get { return Text.Length == 0 ? 0 : double.Parse(Text, CultureInfo.InvariantCulture); }
}
}
答案 4 :(得分:0)
正如另一种选择,您可以使用文本框TextChanged事件。
每次更改值时int.TryParse文本,如果它不起作用只是清除文本框(或保留最后一个有效的值,并在失败时恢复为该值)。