求一个C#程序,WinForm中随机显示图片的代码。
2 回答
ABOUTYOU
TA贡献1812条经验 获得超5个赞
是不是要这个?
string[] PictureFiles = {"1.jpg", "2.jpg", "3.jpg" };
Random rand = new Random();
private void button1_Click(object sender, EventArgs e)
{
pictureBox1.ImageLocation = PictureFiles[rand.Next(0, PictureFiles.Length)];
}
- 2 回答
- 0 关注
- 542 浏览
添加回答
举报
0/150
提交
取消