我在Windows應用程序中有一個文本框。該文本框只允許整數值不是字符串。任何人都可以有解決方案?如何獲取TextBox中的整數值?
-1
A
回答
0
轉換。
public int GetIntValue(TextBox tb)
{
try
{
return Convert.toInt32(tb.Text);
}
catch (Exception ex)
{
//This is called if the converting failed for some reason
}
return 0; //This should only return 0 if the textbox does not contain a valid integer value
}
使用方法如下:
int number = GetIntValue(textBox1);
希望這有助於!
+0
謝謝Tracey .. – Sakthi
0
使用此。
int value = Convert.ToInt32(textBox1.Text);
您使用此代碼,讓你的整數value.Thanks
0
我發現從C# How do I make a textbox that only accepts numbers
的解決方案希望它會幫助你。
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar)
&& !char.IsDigit(e.KeyChar)
&& e.KeyChar != '.')
{
e.Handled = true;
}
// only allow one decimal point
if (e.KeyChar == '.'
&& (sender as TextBox).Text.IndexOf('.') > -1)
{
e.Handled = true;
}
}
相關問題
- 1. 如何在ASP.NET中獲取TextBox的值
- 2. 如何獲取模板中的TextBox值
- 3. 從TextBox獲取值
- 4. 如何獲取枚舉的整數值?
- 5. 如何獲取wpf中textBox的綁定
- 6. 從FormView中的TextBox獲取DateTime值
- 7. 從TextBox獲取值到URL
- 8. 如何從TextBox的Datalist中獲取文本值
- 9. 如何在視圖模型中獲取TextBox控件的CaretIndex值?
- 10. 如何在ASP.NET中回發之前獲取TextBox的值
- 11. 如何使用dojo TextBox attr函數獲取值?
- 12. 從div中獲取TextBox值。 Dojo
- 13. 獲取整數值的NSArray
- 14. 如何從整數值中獲取來自NSMutableArray ObjectAtIndex的數據?
- 15. 具有整數值的DataBinding TextBox WP7
- 16. 如何從formView-> EditItemTemplate-> Textbox中獲取價值?
- 17. 如何從VBA中的DLL中獲取整數值?
- 18. 如何從iPhone中的nsstring評估中獲取整數值?
- 19. 獲取另一個TextBox VISUAL C的值的TextBox#
- 20. 在Async Postback上獲取ASP.NET TextBox的值
- 21. 如何在javascript函數中獲取textbox(這是Gridview內部)的值?
- 22. java - 如何通過docx4j獲取docx文件中的Textbox數據
- 23. 如何獲取整數?
- 24. 如何從Sqlite數據庫中獲取整數值?
- 25. 獲取cookie值爲整數
- 26. 如何從包含UserControls的Repeater獲取所有TextBox值?
- 27. 如何從Repeater獲取更新的Textbox值?
- 28. 如何從Swift中的文本字段獲取整數值?
- 29. 如何在Jqplot中獲取Y軸的整數值?
- 30. 如何從整個數據庫中獲取特定的子值?
檢查[this](http://stackoverflow.com/questions/463299/how-do-i-make-a-textbox-that-only-accepts-numbers)。 – Mask
使用常規表達式。 – TutuGeorge