我正在尝试动态调用标签,但不知道该怎么做。
我想根据整数使标签可见。
因此,如果int i = 1
,则label1
应该变为可见,如果i = 2
,则label2
应该变为可见,依此类推。
我该怎么做呢?
int i = word.indexOf("t");
//This is where I need the label to be dynamically called
我尝试("label" + i.ToString()).Visible = true;"
了一个懒惰的尝试。