你可以吧这三张图片存到 imageList1中 ,根据imageList1 的索引来获取随机图片:
private void button1_Click(object sender, MouseEventArgs e)
{
Random r = new Random();
pictureBox1.Image =imageList1.Images[ r.Next(0,2)];
}
希望看看是你要的效果。。。。
public string GetPicture()
{
string[] s = { "石头", " 剪子", " 布" };
Random newRan = new Random();
int i = newRan.Next(0,2);
return s[i];
}
可以的.很简单,随机生成数字,呈现对应的图片,再通过数字来判断结果.