如何通过添加两个字符串来指定图片框?

时间:2014-08-12 06:23:05

标签: c#

我有一个想要通过组合其他两个字符串指定的pictureBox。让我们说pictureBox被称为Tile20我该怎么办?我如何使这项工作?:

if("Tile" + "20".Tag == "Hello")
{
     rest of the code...
}

1 个答案:

答案 0 :(得分:1)

试试这样:

PictureBox pictureBox = (PictureBox)this.Controls.Find(string.Concat("Tile","20")).FirstOrDefault();

if (pictureBox != null)
{
   if (pictureBox.Tag == "Hello")
   {
     rest of the code...
   }
}