3 instantiations of NativeImageList
System.Windows.Forms (3)
System\Windows\Forms\Controls\ImageList\ImageList.cs (1)
431_nativeImageList = new NativeImageList(_imageSize, flags);
System\Windows\Forms\Controls\ImageList\ImageList.NativeImageList.cs (1)
102return new NativeImageList(himl);
System\Windows\Forms\Controls\ImageList\ImageListStreamer.cs (1)
77_nativeImageList = new ImageList.NativeImageList(new ComManagedStream(memoryStream));
12 references to NativeImageList
System.Windows.Forms (6)
System\Windows\Forms\Controls\ImageList\ImageList.cs (1)
33private NativeImageList? _nativeImageList;
System\Windows\Forms\Controls\ImageList\ImageList.NativeImageList.cs (3)
57Debug.Fail($"{nameof(NativeImageList)} could not be created. Originating stack:\n{_callStack}"); 95internal NativeImageList Duplicate() 107Debug.Fail($"{nameof(NativeImageList)} could not be duplicated. Originating stack:\n{_callStack}");
System\Windows\Forms\Controls\ImageList\ImageListStreamer.cs (2)
19private ImageList.NativeImageList? _nativeImageList; 109internal ImageList.NativeImageList? GetNativeImageList() => _nativeImageList;
System.Windows.Forms.Tests (6)
SerializableTypesTests.cs (1)
95using NativeImageList nativeImageList = result.GetNativeImageList();
System\Windows\Forms\ImageList.NativeImageListTests.cs (1)
18NativeImageList nativeImageList = result.GetNativeImageList();
System\Windows\Forms\ImageListStreamerTests.cs (4)
19using NativeImageList nativeImageListBf = streamerFromBf.GetNativeImageList(); 30using NativeImageList nativeImageListMs = streamerFromMs.GetNativeImageList(); 52using NativeImageList nativeImageListMs = streamerFromMs.GetNativeImageList(); 57using NativeImageList nativeImageListBf = streamerFromBf.GetNativeImageList();