c# 引用textbox中输入的值 传入计算公式中 然后点击button进行计算 该怎么办??求代码
3个回答
展开全部
你在设计窗口中双击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);
//
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();
}
展开全部
textbox包含的是什么类型的数值?把下面几行的double改成需要的数值类型就可以了。
//==========================================
void btCacl_Click(object sender, EventArgs e)
{
double dblOut;
if (double.TryParse(textBox1.Text, dblOut))
{
//使用dblOut开始计算.
}
}
//==========================================
void btCacl_Click(object sender, EventArgs e)
{
double dblOut;
if (double.TryParse(textBox1.Text, dblOut))
{
//使用dblOut开始计算.
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int a=Convert.ToInt32(text1.Text);
int b;
button事件:
b=a+2;
MessageBox.Show(b.ToString());
int b;
button事件:
b=a+2;
MessageBox.Show(b.ToString());
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询