I want to show a transparent animated gif picture above another picture in a WinForm.
But the problem is animated gif image is not transparent & has a white background.
How can i make that animated gif transparent?
And here is my orange picture :
And here is my winform after load :
As you see Loading...
image has white background.
How can i transparent it?
Actually the answer from here works You have to set the gif-picturebox above the other one (as child) and set it's BackColor to Transparent
imgBackImage.Controls.Add(imgGifImage);
imgGifImage.BackColor = Color.Transparent;
The first line of these codes is the key.