使用字符串引用C#中的对象

时间:2016-09-14 03:18:50

标签: c# string object reference

    private void check_boxes(ref int which_series_a, string wh_bx)
    {
        // ******************** Checks to see if box is checked **********************
        if (wh_bx.Checked == true)

我尝试了this.this.Controls,但没有任何作用。

1 个答案:

答案 0 :(得分:0)

假设wh_bx是复选框的名称。

 private void check_boxes(ref int which_series_a, string wh_bx)
 {   
  var myCtrl = this.Controls.Find(wh_bx, true) as CheckBox;
  if(myCtrl != null)
  {
     if(myCtrl.Checked){}
  }
}