使用ImageList组件制作动画图片
Posted feiyucha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用ImageList组件制作动画图片相关的知识,希望对你有一定的参考价值。
实现效果:
知识运用:
Timer组件的Enabled属性 Tick事件
PictureBox控件的Image属性
ImageList组件的Images属性
实现代码:
private void Form1_Load(object sender, EventArgs e) { timer1.Start(); } private void timer1_Tick(object sender, EventArgs e) { pictureBox1.Image = imageList1. Images[index = index++ > 7 ? 0 : index]; //集合索引始为0 }
以上是关于使用ImageList组件制作动画图片的主要内容,如果未能解决你的问题,请参考以下文章