7,539
社区成员




private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e) {
static int i=0;
this->pictureBox1->Image = this->imageList1->Images[i];
i++;
if (i>=this->imageList1->Images->Count)
{
i=0;
}
}