5 writes to lastManaged
System.Windows.Forms (5)
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PictureConverter.cs (5)
74lastManaged = Icon.FromHandle(handle); 78lastManaged = Image.FromHbitmap(handle); 87lastManaged = null; 108lastManaged = managedValue; 132lastManaged = null;
9 references to lastManaged
System.Windows.Forms (9)
winforms\Managed\System\WinForms\ComponentModel\COM2Interop\COM2PictureConverter.cs (9)
64if (lastManaged != null && handle == lastNativeHandle) { 65return lastManaged; 90return lastManaged; 103if (lastManaged != null && lastManaged.Equals(managedValue) && pictureRef != null && pictureRef.IsAlive) { 115if (lastManaged is Icon) { 116pictdesc = NativeMethods.PICTDESC.CreateIconPICTDESC(((Icon)lastManaged).Handle); 118else if (lastManaged is Bitmap) { 119pictdesc = NativeMethods.PICTDESC.CreateBitmapPICTDESC(((Bitmap)lastManaged).GetHbitmap(), lastPalette);