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
,但没有任何作用。
答案 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){}
}
}