-6

我有个问题。

用户控制

Button : UserControl
...
public string naz
{ get { return this.button1.Text; } }
...

在我的表格上我可以做到这一点

if(button0.naz == "1"){ MessageBox.Show("My Text"); }
if(button1.naz == "1"){ MessageBox.Show("My Text"); }
if(button2.naz == "1"){ MessageBox.Show("My Text"); }

但是当我尝试以下时.naz无法识别。

for(int i=0;i<=60;i++)
{
    if(this.Controls["button" + i.ToString()).naz == "1")
    {
        MessageBox.Show("My Text"); 
    }  
}
4

1 回答 1

0

您需要将控件转换为用户控件的类型。如果你的班级真的被叫Button了,那么像这样

var myButton = this.Controls["button" + i] as Button;
if(myButton != null && myButton.naz == "1")
...
于 2013-03-01T12:17:04.690 回答