I have an event that gets called when my app uses the internet. The event changes an animated gif composed of 7 frames. How do I make it only loop through the frames only on
You can just use pictureBox.Enabled = false; if you want to stop the GIF & pictureBox.Enabled = true; when you want it to run the GIF.
pictureBox.Enabled = false;
pictureBox.Enabled = true;