我想用c#開發一個計算器,並且我不使用方法單擊從0到9的所有按鈕我想我只有一個方法,並且如果單擊使用發件人和標籤在文本框中寫入的每個按鈕。 問候如何在c#中使用發件人和標籤?
enter code here
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Final
{
public partial class Form1 : Form
{
bool names;
int counter;
string name;
double ans, num;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Environment.Exit(0);
}
private void button6_Click(object sender, EventArgs e)
{
textBox1.Text += "1";
counter++;
again();
}
private void button7_Click(object sender, EventArgs e)
{
textBox1.Text += "2";
counter++;
again();
}
private void button8_Click(object sender, EventArgs e)
{
textBox1.Text += "3";
counter++;
again();
}
你嘗試過什麼了嗎? –
我寫的所有按鈕時,單擊文本框寫這個方法,但我想只是有一種方法,我命名標籤屬性中的所有按鈕 – Yousra
然後將您的代碼添加到問題 –