作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将一个 GIF 动画放在 PictureBox 中,默认情况下我的动画是连续循环的。我需要在第一个循环后停止它,方法是执行此 pictureBox1.Enabled=false
或手动将 GIF 动画更改为该动画的最后一帧,但我如何才能捕捉到第一个循环结束的时刻?
我发现了这个问题(click),但我不明白我该如何使用它,任何人都可以说清楚或描述另一种方法吗?
最佳答案
解决方案是获取帧数,然后将事件添加到 picureBox.Paint 以检查已渲染了多少帧。一旦达到帧数,就可以禁用 pictureBox。
这里我做了一个简单的解决方案:
int numberOfFrames = 0;
int currentFrame = 0;
public Form1()
{
InitializeComponent();
pictureBox1.Paint += new PaintEventHandler(this.pictureBox1_Paint);
FrameDimension dimension = new FrameDimension(this.pictureBox1.Image.FrameDimensionsList[0]);
numberOfFrames = this.pictureBox1.Image.GetFrameCount(dimension);
}
private void pictureBox1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
{
if(currentFrame == numberOfFrames)
{
this.pictureBox1.Enabled = false;
}
currentFrame++;
}
关于c# - 如何在第一个循环 C# 后停止 PictureBox GIF 动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53634678/
我是一名优秀的程序员,十分优秀!