我正在尝试从书中解决一个练习。(没有公布的答案)
我需要将表单上存在的 PictureBox 对象引用到对象数组。(我真的需要分配其中四个)
我初始化数组并将变量分配给它。然后我在数组中的每个项目中调用一个方法,但是没有分配 PictureBox 对象。(空异常)
我有点困惑,因为我在网上公开发现了一些代码片段,表明我这样做是正确的。
下面的代码请指点:
主班
public partial class Form1 : Form
{
Greyhound[] greyhoundArray = new Greyhound[4];
public Form1()
{
greyhoundArray[0] = new Greyhound() { Location = 0, MyPictureBox = dog1, RaceTrackLenght = 100, StartingPosition = 0 };
greyhoundArray[1] = new Greyhound() { Location = 0, MyPictureBox = dog2, RaceTrackLenght = 100, StartingPosition = 0 };
greyhoundArray[2] = new Greyhound() { Location = 0, MyPictureBox = dog3, RaceTrackLenght = 100, StartingPosition = 0 };
greyhoundArray[3] = new Greyhound() { Location = 0, MyPictureBox = dog4, RaceTrackLenght = 100, StartingPosition = 0 };
InitializeComponent();
}
private void timer1_Tick(object sender, EventArgs e)
{
foreach (Greyhound greyhound in greyhoundArray)
{
greyhound.Run();
}
}
}
灰狗班
public class Greyhound
{
public int StartingPosition;
public int RaceTrackLenght;
public PictureBox MyPictureBox;
public int Location = 0;
public Random Randomiser;
public void Run()
{
// MessageBox.Show(MyPictureBox.Name + " was called");
Randomiser = new Random();
int distance = Randomiser.Next(0, 4);
Point p = MyPictureBox.Location;
p.X += distance;
MyPictureBox.Location = p;
}
public void TakeStartingPosition()
{ }
}
我还可以确认表格上确实存在每只狗的图片框:
来自 Form1.Designer.cs 的片段
//
// dog1
//
this.dog1.Image = ((System.Drawing.Image)(resources.GetObject("dog1.Image")));
this.dog1.Location = new System.Drawing.Point(17, 21);
this.dog1.Name = "dog1";
this.dog1.Size = new System.Drawing.Size(71, 26);
this.dog1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.dog1.TabIndex = 2;
this.dog1.TabStop = false;