c# Programming Glossary: bitmaptransfer
Drag and Drop between Instances of the same Windows Forms Application http://stackoverflow.com/questions/1201812/drag-and-drop-between-instances-of-the-same-windows-forms-application First here is the class. Serializable public class BitmapTransfer private byte buffer private PixelFormat pixelFormat private.. Size size private float dpiX private float dpiY public BitmapTransfer Bitmap source this.pixelFormat source.PixelFormat this.size.. dataObject new DataObject dataObject.SetData typeof BitmapTransfer new BitmapTransfer sender as PictureBox .Image as Bitmap dataObject.SetData..
|