3 writes to nativeImageList
System.Windows.Forms (3)
winforms\Managed\System\WinForms\ImageList.cs (3)
312this.nativeImageList = new NativeImageList(SafeNativeMethods.ImageList_Duplicate(new HandleRef(himl, himl.Handle))); 544nativeImageList = new NativeImageList(SafeNativeMethods.ImageList_Create(imageSize.Width, imageSize.Height, flags, INITIAL_CAPACITY, GROWBY)); 578nativeImageList = null;
8 references to nativeImageList
System.Windows.Forms (8)
winforms\Managed\System\WinForms\ImageList.cs (8)
206if (nativeImageList == null) { 209return nativeImageList.Handle; 223get { return nativeImageList != null; } 308if (himl != null && himl != this.nativeImageList) { 314if(SafeNativeMethods.ImageList_GetIconSize(new HandleRef(this, this.nativeImageList.Handle), out x, out y)) { 319if(SafeNativeMethods.ImageList_GetImageInfo(new HandleRef(this, this.nativeImageList.Handle), 0, imageInfo)) { 514Debug.Assert(nativeImageList == null, "Handle already created, this may be a source of temporary GDI leaks"); 577nativeImageList.Dispose();