用按钮单击更改标签文本

时间:2012-09-09 00:11:25

标签: c# button label

我需要更改按钮单击上的标签文本,但它不起作用并给我运行时错误。我有单独的LABEL类和BUTTON分开。这是虚拟代码。真正的代码包含位置标签和按钮的大小和大小。一切都是动态创建的。谢谢!

   /-------------------------------------LABEL class-------------------------------/
   private Label label1;

   public Label getLabel1()
   {
       return label1;
   }

   public LABEL()
   {
       label1 = new Label();
   }

    public void print()
    {            
        label1.Text = "x";
        Controls.Add(label1);
    }//

  /-------------------------------------BUTTON class----------------------------------/
    private Button button1;

    public BUTTON()
    {

    }

    public void print()
    {
        button1 = new Button();
        button1.Click +=new EventHandler(button1_Click);
        Controls.Add(button1);
    }

     public void button1_Click(object sender, EventArgs e)
     {
        LABEL label = new LABEL();
        label.getLabel1().Text = "y";
     }

2 个答案:

答案 0 :(得分:1)

你可以试一试。

private void button1_Click(object sender, EventArgs e){label1.Text = "Hi";label1.Refresh();}

答案 1 :(得分:0)

您正尝试更改空引用标签的文本:

// Label Class
private Label label1;
public Label getLabel1()
{
    return label1;
}
// Button Class
LABEL label1 = new LABEL();
label1.getLabel1().Text = "y";
// getLabel1 is returning null, because you have not initialized label1

为了使代码有效,您必须更改以下内容:

public LABEL()
{
    label1 = new Label();
}

public void print()
{
    label1.Text = "x";
    Controls.Add(label1);
}

希望这有帮助!