我現在開始使用C#。在解決我的講師要求我做的一個問題時,我遇到了一個問題。下面是GUI。C#多行計算
http://i.share.pho.to/daa36a24_c.png
這是代碼我沒有,但我沒能部分代碼如下
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
double num1;
double num2;
double answer;
num1 = double.Parse(textBox1.Text);
num2 = double.Parse(textBox2.Text);
textBox4.Text = Convert.ToString(answer);
}
}
}
提到我,我將需要加/減/多/分第一和第二號所以它會產生 - >(第一個數字+操作+第二個數字=答案)。
問題是我需要通過點擊文本框上的+, - ,*,/符號來選擇操作。我可以使用單選按鈕等方式輕鬆完成,但我的講師堅持使用這種格式。請協助「操作」選擇的編碼。謝謝。
顯示你的代碼,而不是像.. –
我期待我怎樣才能選擇操作(+, - ,*,/),當我點擊它的文本框和程序理解我正在選擇什麼操作。 – Roshan