写程式的新手,想问各位大大一个问题><
附上程式一个片段:
private void button2_Click(object sender, EventArgs e)
{
ArrayList list = new ArrayList();
for (int i = 0; i < 10; i++)
{
a = new myCircle(this.CreateGraphics(),
this.ClientSize.Width, this.ClientSize.Height);
list.Add(a);
Thread.Sleep(600);
}
Thread thread1 = new Thread(new ThreadStart(checkDistance));
thread1.Start();
}
如上,myCircle是自己写的class,里面有x和y会一直不停变换。
按下button2后萤幕会出现十颗球。
我的问题是,要怎么从arraylist里面抓出十颗球个别的x和y位置,谢谢!