按下按钮后,如何在文本框中显示数字?

时间:2013-09-06 23:52:16

标签: c# textbox numbers calculator

我是这个网站的新手,对编程很新。

我正在用C#制作一个计算器,我想知道在按下按钮后如何在一个文本框中显示一个数字。

谢谢!

1 个答案:

答案 0 :(得分:0)

您需要向按钮事件处理程序添加代码:

public void Button1_Click(Object sender, EventArgs e)
{
   TextBox1.Text = "1"; 
}

哪个会在文本框中显示string“1”。

您还可以在网页上设置多个文本框并使用:

public void Button1_Click(Object sender, EventArgs e)
{
   string input1 = txtInput.Text;
   string input2 = txtInput2.Text;

   int userInput;
   int userInput2;
   int result;

   Int32.TryParse(input1, out userInput);
   Int32.TryParse(input2, out userInput2);

   result = userInput + userInput2;       
   txtAnswer.Text = "The answer is: " result.ToString(); 
}

我添加了一个TryParse示例,演示了从字符串到整数的转换是否成功。