c# 引用textbox中输入的值 传入计算公式中 然后点击button进行计算 该怎么办??求代码

如题所述

你在设计窗口中双击button就可以对动作进行设定了。
private void button1_Click(object sender, EventArgs e)
{
yourfunction(textBox1.Text);
}

IDE会自动把这个动作加入到事件监听中。
//
// button1
//
this.button1.Location = new System.Drawing.Point(62, 158);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
---> this.button1.Click += new System.EventHandler(this.button1_Click);
//追问

多个textbox的值呢?如果是四个 公式是a=b+c*d^2/e

追答

double myfunction(string tb, string tc, string td, string te)
{
double b = Convert.ToDouble(tb);
double c = Convert.ToDouble(tc);
double d = Convert.ToDouble(td);
double e = Convert.ToDouble(te);
return b+c*d*d/e;
}
private void button1_Click(object sender, EventArgs e)
{
string tb = textBox1.Text;
string tc = textBox2.Text;
string td = textBox3.Text;
string te = textBox4.Text;
textBox1.Text = myfunction(tb,tc,td,te).ToString();
}

温馨提示:内容为网友见解,仅供参考
第1个回答  2013-05-24
textbox包含的是什么类型的数值?把下面几行的double改成需要的数值类型就可以了。
//==========================================
void btCacl_Click(object sender, EventArgs e)
{
double dblOut;
if (double.TryParse(textBox1.Text, dblOut))
{
//使用dblOut开始计算.
}
}
第2个回答  2013-05-24
int a=Convert.ToInt32(text1.Text);
int b;
button事件:
b=a+2;

MessageBox.Show(b.ToString());
相似回答