我正在制造一个计算器,希望消息框显示一个整数变量,然后在按加号或减号键后显示另一个变量。 这是“ 1”按钮的代码。我想要的功能只有一个,因为这是概念验证测试。
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
public int x =0;
public int y =0;
private void RadioButton_Checked(object sender, RoutedEventArgs
e)
{
}
private void Equal_Button_Click(object sender, RoutedEventArgs e)
{
}
private void _1_Button_Click(object sender, RoutedEventArgs e)
{
if MessageBox.Show(messageBoxText: x)
{ y = 1;
MessageBox.Show(y)};
}
}
}
我希望它在消息框中键入“ 1”,但是却出现了“ x”的“参数1:无法从int转换为字符串”错误