6 writes to ImageList
System.Windows.Forms (4)
winforms\Managed\System\WinForms\ContextMenuStrip.cs (1)
67contextMenuStrip.ImageList = ImageList;
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (1)
1528this.toolStrip1.ImageList = imageList;
winforms\Managed\System\WinForms\PropertyGrid.cs (2)
1532toolStrip.ImageList = imageList[this.buttonType]; 4510toolStrip.ImageList = imageList[this.buttonType];
System.Workflow.Activities (2)
Rules\Design\Dialogs\BasicBrowserDialog.Designer.cs (1)
110this.rulesToolStrip.ImageList = this.imageList;
Rules\Design\Dialogs\RuleSetDialog.Designer.cs (1)
153this.rulesToolStrip.ImageList = this.imageList;
10 references to ImageList
System.Windows.Forms (10)
winforms\Managed\System\WinForms\ContextMenuStrip.cs (1)
67contextMenuStrip.ImageList = ImageList;
winforms\Managed\System\WinForms\ToolStripItem.cs (9)
1245if (image == null && (Owner != null) && (Owner.ImageList != null) && ImageIndexer.ActualIndex >= 0) { 1246if (ImageIndexer.ActualIndex < Owner.ImageList.Images.Count) { 1248image = Owner.ImageList.Images[ImageIndexer.ActualIndex]; 1323if ((Owner != null) && ImageIndexer.Index != -1 && Owner.ImageList != null && ImageIndexer.Index >= Owner.ImageList.Images.Count) { 1324return Owner.ImageList.Images.Count - 1; 1914bool usingImageList = ((Owner != null) && (Owner.ImageList != null) && (ImageIndexer.ActualIndex >= 0)); 1926imageSize = Owner.ImageList.ImageSize; 4579return item.Owner.ImageList;