关于C#中的pictureBox切换图片的问题。16
发布网友
发布时间:2023-10-23 05:12
我来回答
共2个回答
热心网友
时间:2024-11-22 17:13
分别双击窗体和picturebox,加入代码
Boolean index = false;
private void Form1_Load(object sender, EventArgs e)
{
pictureBox1.Image = imageList1.Images[0];
}
private void pictureBox1_Click(object sender, EventArgs e)
{
index=!index;
pictureBox1.Image = imageList1.Images[(index?1:0)];
}
追问的确好用,但是代码不怎么懂。能不能多说一点,如果在三张图片之间切换呢?
热心网友
时间:2024-11-22 17:13
,用这个的话,有几张图片都无所谓,会一直循环显示