18 writes to Image
System.Windows.Forms (11)
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
1273private void ResetImage() => Image = null;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridErrorDialog.cs (3)
65_detailsButton.Image = _expandImage; 77_detailsButton.Image = _expandImage; 83_detailsButton.Image = _collapseImage;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (4)
219_dropDownButton.Image = bitmap; 266Image = CreateResizedBitmap( 5182_dialogButton.Image = CreateResizedBitmap("dotdotdot", DotDotDotIconWidth, DotDotDotIconHeight); 5188_dropDownButton.Image = CreateResizedBitmap("Arrow", DownArrowIconWidth, DownArrowIconHeight);
System\Windows\Forms\Dialogs\ThreadExceptionDialog.cs (3)
303button.Image = _expandImage; 345_detailsButton.Image = _detailsVisible ? _collapseImage : _expandImage; 387_detailsButton.Image = _detailsVisible ? _collapseImage : _expandImage;
System.Windows.Forms.Design (7)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
1118button.Image = ScaleHelper.ScaleToDpi(buttonBitmap, ScaleHelper.InitialSystemDpi, disposeBitmap: true);
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (2)
59_moveUp.Image = ScaleHelper.ScaleToDpi(moveUp, ScaleHelper.InitialSystemDpi, disposeBitmap: true); 64_moveDown.Image = ScaleHelper.ScaleToDpi(moveDown, ScaleHelper.InitialSystemDpi, disposeBitmap: true);
System\Windows\Forms\Design\ToolStripCollectionEditor.ToolStripItemEditorForm.cs (1)
357button.Image = ScaleHelper.ScaleToDpi(buttonBitmap, ScaleHelper.InitialSystemDpi, disposeBitmap: true);
System\Windows\Forms\Design\TreeNodeCollectionEditor.cs (3)
71_moveDownButton.Image = ScaleHelper.ScaleToDpi(moveDown, ScaleHelper.InitialSystemDpi, disposeBitmap: true); 76_moveUpButton.Image = ScaleHelper.ScaleToDpi(moveUp, ScaleHelper.InitialSystemDpi, disposeBitmap: true); 81_btnDelete.Image = ScaleHelper.ScaleToDpi(delete, ScaleHelper.InitialSystemDpi, disposeBitmap: true);
15 references to Image
System.Windows.Forms (8)
System\Windows\Forms\Controls\Buttons\Button.cs (1)
167&& Image is null
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (2)
446if (value == Image) 1251ImageAnimator.UpdateFrames(Image);
System\Windows\Forms\Controls\Buttons\ButtonInternal\ButtonBaseAdapter.cs (4)
565if (Control.Image is not null) 568DrawImageCore(e.GraphicsInternal, Control.Image, layout.ImageBounds, layout.ImageStart, layout); 619ImageSize = (Control.Image is null) ? Size.Empty : Control.Image.Size,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridErrorDialog.cs (1)
303detailsWidth += _detailsButton.Image!.Width;
System.Windows.Forms.Design (7)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
1113if (button?.Image is not Bitmap buttonBitmap)
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (2)
57if (_moveUp.Image is Bitmap moveUp) 62if (_moveDown.Image is Bitmap moveDown)
System\Windows\Forms\Design\ToolStripCollectionEditor.ToolStripItemEditorForm.cs (1)
352if (button?.Image is not Bitmap buttonBitmap)
System\Windows\Forms\Design\TreeNodeCollectionEditor.cs (3)
69if (_moveDownButton.Image is Bitmap moveDown) 74if (_moveUpButton.Image is Bitmap moveUp) 79if (_btnDelete.Image is Bitmap delete)