c #Windows Forms将pictureBox添加到Array

时间:2017-01-06 20:42:34

标签: c# arrays picturebox windows-forms-designer

我需要将PictureBox'spictureBox11添加到pictureBox30)到数组。

所以不要像这样添加PictureBox:

PictureBox[] Coins = new PictureBox[20];
Coins[0] = pictureBox11;
...
Coins[19] = pictureBox30;

我写了一个像这样的循环(不工作):

    for (int i = 11; i < 31; i++)
    {
        for (int j = 0; j < Coins.Length; j++)
        { 
             Coins[j] = (PictureBox)Controls.Find(
                            "pictureBox" + i.ToString(), true)[0];
        }
    }

在某处可能会有一个小小的愚蠢错误,因为我使用相同的循环来做另一件事而且它有效,idk,也许我只是盲目且无法看到错误。

也许它是相关的,所以我将包含我为数组元素分配的代码:

        for (int i = 0; i < Coins.Length; i++)
        {
            if (player.Bounds.IntersectsWith(Coins[i].Bounds))
            {
                Coins[i].Visible = false;
            }
        }

如果我按照第一个代码所示添加它们,一切正常,但它不太实用。

为什么我写的第二段代码(for cycle)不适合我?

有没有更好的方法可以将多个图片框添加到数组中?

1 个答案:

答案 0 :(得分:0)

我猜你正在变得比以前更加复杂。为了更好地理解,我假设当你说我需要将图片框(pictureBox11到pictureBox30)添加到一个数组。你的意思是你的表单上有30多个PictureBox个每个PictureBox使用一个命名约定,使每个命名约定为“pictureBoxX”,其中“X”为1,2,3 ... 30,31。然后你想在表单上得到一个(连续的?)“PictureBoxes”组,使其不可见。我希望这是正确的。

为了简单地使图片框不可见,我认为不需要数组。如果名称匹配“pictureBoxX”形式的字符串,只需循环显示图片框并使其不可见。我使用IndexsAreValid方法来验证开始和结束索引。它也用在此代码下面的数组实现的代码中。

在没有数组

的情况下使PictureBox不可见
private void SetPictureBoxesInvisible(int start, int end) {
  int size = -1;
  string targetString = "";
  if (IndexsAreValid(start, end, out size)) {
    for (int i = start; i < end + 1; i++) {
      try {
        targetString = "pictureBox" + i;
        PictureBox target = (PictureBox)Controls.Find(targetString, true)[0];
        if (target != null) {
          target.Visible = false;
        }
      }
      catch (IndexOutOfRangeException e) {
        return;
      }
    }
  }
}

如果您必须返回PictureBox数组,则下面的代码应该有效。

首先,要获得一个PictureBox数组,您需要一个数组来存储它们。但首先你需要知道它有多大。从您发布的代码中可以看出,您想要获取图片框11-30并将它们放入数组中。所以我们可以从这些数字中得到大小......即30-11 = 19 + 1 = 20.这就是你所需要的。只需创建数组并循环遍历所有图片框并抓取pictureBox11-pictureBox30。完成后我们可以使用这个数组使这些`PictureBoxes'不可见。

我创建了一个类似于IsValidPic的方法tryParse来验证给定索引(1,2,3..30)是否有效。如果它超出范围,我只是忽略该值。这使您能够抓取单个图片框,以防所需的图片框不连续。我用了几个按钮来测试方法。

希望这会有所帮助。

private PictureBox[] GetPictureBoxes(int start, int end) {
  int size = - 1;
  if (IndexsAreValid(start, end, out size)) {
    PictureBox curPic = null;
    PictureBox[] allPics = new PictureBox[size];
    int index = 0;
    for (int i = start; i <= end; i++) {
      if (IsValidPic(i, out curPic)) {
        allPics[index] = curPic;
        index++;
      }
    }
    return allPics;
  }
  else {
    return new PictureBox[0];
  }
}

private Boolean IndexsAreValid(int start, int end, out int size) {
  if (start < 1 || end < 1) {
    size = -1;
    return false;
  }
  if (start > end) {
    size = -1;
    return false;
  }
  size = end - start + 1;
  return true;
}

private Boolean IsValidPic(int index, out PictureBox picture) {
  string targetName = "pictureBox" + index;
  try {
    PictureBox target = (PictureBox)Controls.Find(targetName, true)[0];
    if (target != null) {
      picture = target;
      return true;
    }
    picture = null;
    return false;
  }
  catch (IndexOutOfRangeException e) {
    picture = null;
    return false;
  }
}

private void ResetAll() {
  foreach (PictureBox pb in this.Controls.OfType<PictureBox>()) {
    pb.Visible = true;
  }
}

private void button1_Click(object sender, EventArgs e) {
  TurnInvisible(2, 3);
}

private void button3_Click(object sender, EventArgs e) {
  TurnInvisible(11, 30);
}

private void button4_Click(object sender, EventArgs e) {
  TurnInvisible(1,7);
}

private void TurnInvisible(int start, int end) {
  PictureBox[] pictureBoxesToChange = GetPictureBoxes(start, end);
  foreach (PictureBox pb in pictureBoxesToChange) {
    if (pb != null)
      pb.Visible = false;
  }
}

private void button2_Click(object sender, EventArgs e) {
  ResetAll();
}