3 instantiations of ImageListDesigner
System.Windows.Forms.Design.Tests (3)
System\Windows\Forms\Design\ImageListActionListTests.cs (1)
16_imageListDesigner = new();
System\Windows\Forms\Design\ImageListDesignerOriginalImageCollectionTests.cs (1)
10private readonly ImageListDesigner _owner = new();
System\Windows\Forms\Design\ImageListDesignerTests.cs (1)
11using ImageListDesigner imageListDesigner = new();
12 references to ImageListDesigner
System.Design (1)
System.Design.Forwards.cs (1)
54[assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.ImageListDesigner))]
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\ImageListActionList.cs (2)
12private readonly ImageListDesigner _designer; 14public ImageListActionList(ImageListDesigner designer)
System\Windows\Forms\Design\ImageListDesigner.cs (2)
118properties[shadowProps[i]] = TypeDescriptor.CreateProperty(typeof(ImageListDesigner), prop, []); 129properties["Images"] = TypeDescriptor.CreateProperty(typeof(ImageListDesigner), "Images", typeof(OriginalImageCollection), attrs);
System\Windows\Forms\Design\ImageListDesigner.OriginalImageCollection.cs (2)
18private readonly ImageListDesigner _owner; 21internal OriginalImageCollection(ImageListDesigner owner)
System.Windows.Forms.Design.Tests (5)
System\Windows\Forms\Design\ImageListActionListTests.cs (1)
11private readonly ImageListDesigner _imageListDesigner;
System\Windows\Forms\Design\ImageListDesignerOriginalImageCollectionTests.cs (3)
10private readonly ImageListDesigner _owner = new(); 12private readonly ImageListDesigner.OriginalImageCollection _originalImageCollection; 38Action action = () => new ImageListDesigner.OriginalImageCollection(null!);
System\Windows\Forms\Design\ImageListDesignerTests.cs (1)
11using ImageListDesigner imageListDesigner = new();