Concernant les images, pour charger un gif animer je fais :
Bitmap bmp = new Bitmap(this.GetType(),"copy.gif");
Color bakColor = bmp.GetPixel(1,1);
bmp.MakeTransparent();
pictureBox1.Image = bmp;
En enlevant la ligne MakeTransparent, ça marche, mais quand ele y est, picturebox affiche qu'une seule frame, puis sa bloque.
a peu pres comme :
Image img = Image.FromFile(chemin);
sinon ... je sais pas
Bitmap bmp = new Bitmap(this.GetType(),"copy.gif");
Color bakColor = bmp.GetPixel(1,1);
bmp.MakeTransparent();
pictureBox1.Image = bmp;
En enlevant la ligne MakeTransparent, ça marche, mais quand ele y est, picturebox affiche qu'une seule frame, puis sa bloque.