简单的计算器,显示 C# 中 2 个数字之间的差异

simple calculator that shows the different between 2 numbers in C#

首先抱歉我的语言不通。我想创建一个计算器来显示 C# 中 2 个数字之间的差异 我试图做到,但我总是以将文本框 1 添加到文本框 2 并在文本框 3 中显示总数,我不想这样做 请看图形用户界面,很简单 如果差异为正,我还想将数字设为绿色;如果差异为负,则数字设为红色。看图片 谢谢! simple gui

在计算按钮的点击事件中写这段代码

    private void Calculate_Click(object sender, EventArgs e)
    {
        if (textBox1.Text != "" && textBox2.Text != "")
        {
            int diff = (Convert.ToInt32(textBox1.Text) - Convert.ToInt32(textBox2.Text));
            textBox3.Text = diff.ToString();
            if (diff >= 0)
            {
                textBox3.ForeColor = Color.Green;
            }
            else
                textBox3.ForeColor = Color.Red;

        }
        else
        {
            MessageBox.Show("PLZ Enter the balances");
        }
    }