在一個網站上,我發現了嘗試解析方法(如何檢查在C#中是否有一個空的文本框),但我不知道如何使用它。如何檢查空的文本框
int outputValue=0;
bool isNumber=false;
isNumber=int.TryParse(textBox1.Text, out outputValue);
if(!isNumber)
{
MessageBox.Show("Type numbers in the textboxes");
}
else
{
// some code
}
,我怎麼能解決這個1+文本框
哪位有點困惑嗎? (順便說一句,你提供的代碼不檢查文本框是否爲空) – Sayse
'String.IsNullOrEmpty'用於檢查文本是否爲空或空。 – Hassan
這不檢查空的複選框。它會讓你知道文本框中的文本是否是整數。 – Enigmativity