不明白?直接Label1.Text = "aaaa";

解决方案 »

  1.   

    在WinForm的后台根本就点不出Label1.Text
      

  2.   

    findcontrol你所谓的点不出是什么情况,要是本身就没有Label1那当然点不出了,
      

  3.   

    楼主先编绎一下你的程序就会发现,你所谓的Label1是否存在。
      

  4.   

    foreach (Control   ctr   in   this.Controls) 

      if   (ctr   is   Label ) 
      {
          if ((ctr as Label).Name == "label1") 
          {
              ctr.Text = "uu";  
          } 
      } 
    }
      

  5.   

    在后台直接重新定义一个新的Label。
      

  6.   

    this.Controls["lebel1"]
    foreach (Control c in this.Controls)  
    {  
    }