计算器代码中的错误消息

时间:2016-01-28 16:41:53

标签: c# winforms

我在c#.net编码计算器。我在txtDisplay.Text中的txtDisplay上有一条错误消息。错误说"名称&#t; txtDisplay'在当前上下文中不存在"。到目前为止,我的代码是:

using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Calc    
{      
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }

    private void btnOne_Click(object sender, EventArgs e)
    {
      txtDisplay.Text = txtDisplay.Text + btnOne.Text;
    }

1 个答案:

答案 0 :(得分:0)

我测试了以下代码,它运行正常。就像评论所说的那样,如果你还没有创建一个名为txtDisplay的元素,你将会收到此错误。更多代码会有所帮助,因此我可以相应地编辑我的答案。

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void btnOne_Click(object sender, EventArgs e)
    {
        txtDisplay.Text += btnOne.Text;
    }
}