In the project sources i added the animated gif a existing file : On the right bottom i see the type if bitmap and not gif.
In the form code :
using Capture_Screen.Properties;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Test
{
public partial class SettingsForm : Form
{
public SettingsForm()
{
InitializeComponent();
pictureBox1.Image = Resources.Settings;
}
private void SettingsForm_Load(object sender, EventArgs e)
{
}
}
}
The result when running the application in the pictureBox i see some brown color instead playing the animated gif :