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

 我来答
leonne_iusi
2013-05-24 · TA获得超过1106个赞
知道小有建树答主
回答量:390
采纳率:0%
帮助的人:329万
展开全部
你在设计窗口中双击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();
}
starj1
2013-05-24 · TA获得超过1576个赞
知道小有建树答主
回答量:765
采纳率:47%
帮助的人:264万
展开全部
textbox包含的是什么类型的数值?把下面几行的double改成需要的数值类型就可以了。
//==========================================
void btCacl_Click(object sender, EventArgs e)
{
double dblOut;
if (double.TryParse(textBox1.Text, dblOut))
{
//使用dblOut开始计算.
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友d15fd33
2013-05-24 · TA获得超过672个赞
知道小有建树答主
回答量:407
采纳率:50%
帮助的人:237万
展开全部
int a=Convert.ToInt32(text1.Text);
int b;
button事件:
b=a+2;

MessageBox.Show(b.ToString());
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式