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