尝试使用按钮来划分文本输入。我已经完成了添加/子/乘,它们工作正常,只是除法没有。以下是我的代码,如有任何帮助,我们将不胜感激。代码看起来没问题,我的问题是消息框没有显示
private void myDivideButton_Click(object sender, RoutedEventArgs e)
{
int ans = 0;
try
{
ans = int.Parse(myInput1.Text) / int.Parse(myInput2.Text);
MessageBox.Show("The values being divided are " + myInput1.Text + "/" + myInput2.Text + "=" + ans);
}
catch (Exception ex)
{
myInput1.Text = "0";
myInput2.Text = "0";
}
}
}
}
喵喵时光机
相关分类