I have a picturebox on a form that displays a transparent gif all fine and well. I wish to copy this to the clipboard so I can paste it elsewhere. Unfortunately using the following:
System.Windows.Forms.Clipboard.SetDataObject(f.PictureBox2.Image)
Replaces the transparency with a dark blue.
Any ideas on how I can achieve this?
System.Windows.Forms.Clipboard.SetDataObject(f.PictureBox2.Image)
Replaces the transparency with a dark blue.
Any ideas on how I can achieve this?