namespace Exer3
{
public partial class MyCalculator : Form
{
public MyCalculator()
{
InitializeComponent();
}
private void btnAdd_Click(object sender, EventArgs e)
{
int num1 = Convert.ToInt32(txtNum1.Text);
int num2 = Convert.ToInt32(txtNum2.Text);
if (txtNum1.Text.Length == 0 & txtNum2.Text.Length == 0)
{
MessageBox.Show("No Input Detected");
txtNum1.Focus();
txtNum2.Focus();
}
else
lblTotal.Text = (num1 + num2).ToString();
}
}
}
當我運行該程序,它計算得很好..但是當我試圖離開文本框爲空,然後單擊添加按鈕時,消息框將出現「未檢測到輸入」後程序將開始調試,並顯示「輸入字符串格式不正確」。請幫忙解決這個問題輸入字符串格式不正確
任何問題嗎?此外,請確保你輸入的數字文本框 –
這將有助於很多,如果你想多一些問題的描述。標題是什麼,當你試圖編譯它,或者運行它,或者究竟是什麼? –
你的問題是什麼? – mipe34