You could use a picturebox control.
Load the image into the picturebox, setting the transparency.
This will work as you expect...Code:Bitmap bmpPicture = (Bitmap)Bitmap.FromFile("arrow.png"); bmpPicture.MakeTransparent(Color.Pink); pictureBox1.Image = bmpPicture;
-C6




Reply With Quote