11 instantiations of PictureBox
PresentationUI (5)
MS\Internal\Documents\Application\DocumentPropertiesDialog.Designer.cs (1)
68this._iconPictureBox = new System.Windows.Forms.PictureBox();
MS\Internal\Documents\RMEnrollmentPage1.Designer.cs (1)
48_pictureBox = new System.Windows.Forms.PictureBox();
MS\Internal\Documents\RMEnrollmentPage2.Designer.cs (3)
44this._pictureBox1 = new System.Windows.Forms.PictureBox(); 48this._pictureBox2 = new System.Windows.Forms.PictureBox(); 50this._pictureBox4 = new System.Windows.Forms.PictureBox();
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridErrorDialog.cs (1)
134_pictureBox = new()
System\Windows\Forms\Dialogs\ThreadExceptionDialog.cs (1)
59private readonly PictureBox _pictureBox = new();
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\DesignBindingPicker.cs (2)
168PictureBox addNewIcon = new() 293PictureBox addNewIcon = new()
System\Windows\Forms\Design\StyleEditorForm.cs (2)
170_infoPictureBox2 = new PictureBox(); 171_infoPictureBox1 = new PictureBox();
30 references to PictureBox
PresentationUI (5)
MS\Internal\Documents\Application\DocumentPropertiesDialog.Designer.cs (1)
782private System.Windows.Forms.PictureBox _iconPictureBox;
MS\Internal\Documents\RMEnrollmentPage1.Designer.cs (1)
244private System.Windows.Forms.PictureBox _pictureBox;
MS\Internal\Documents\RMEnrollmentPage2.Designer.cs (3)
244private System.Windows.Forms.PictureBox _pictureBox1; 249private System.Windows.Forms.PictureBox _pictureBox2; 250private System.Windows.Forms.PictureBox _pictureBox4;
System.Windows.Forms (15)
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (3)
238t_defaultErrorImageForThread ??= ScaleHelper.GetIconResourceAsDefaultSizeBitmap(typeof(PictureBox), "ImageInError"); 293/// Retrieves the Image that the <see cref="PictureBox"/> is currently displaying. 397t_defaultInitialImageForThread ??= ScaleHelper.GetIconResourceAsDefaultSizeBitmap(typeof(PictureBox), "PictureBox.Loading");
System\Windows\Forms\Controls\PictureBox\PictureBox.PictureBoxAccessibleObject.cs (1)
13public PictureBoxAccessibleObject(PictureBox owner) : base(owner)
System\Windows\Forms\Controls\PictureBox\PictureBoxSizeMode.cs (9)
7/// Specifies how an image is positioned within a <see cref="PictureBox"/>. 13/// <see cref="PictureBox"/>. The image is clipped 14/// if the <see cref="PictureBox"/> is to small. 19/// The image within the <see cref="PictureBox"/> is stretched or shrunk to fit the 20/// current size of the <see cref="PictureBox"/>. 25/// The <see cref="PictureBox"/> is sized to fit the 32/// <see cref="PictureBox"/> is larger than the 33/// image. If the image is larger than the <see cref="PictureBox"/>, 35/// <see cref="PictureBox"/> and the outside edges are
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridErrorDialog.cs (1)
17private PictureBox _pictureBox;
System\Windows\Forms\Dialogs\ThreadExceptionDialog.cs (1)
59private readonly PictureBox _pictureBox = new();
System.Windows.Forms.Design (10)
System\Windows\Forms\Design\DesignBindingPicker.cs (2)
168PictureBox addNewIcon = new() 293PictureBox addNewIcon = new()
System\Windows\Forms\Design\PictureBoxActionList.cs (4)
12private readonly PictureBox _pictureBox; 18_pictureBox = (PictureBox)designer.Component; 24set => TypeDescriptor.GetProperties(_pictureBox)[nameof(PictureBox.SizeMode)]!.SetValue(Component, value); 27public void ChooseImage() => EditorServiceContext.EditValue(_designer, Component!, nameof(PictureBox.Image));
System\Windows\Forms\Design\PictureBoxDesigner.cs (2)
67PictureBox pictureBox = (PictureBox)Component;
System\Windows\Forms\Design\StyleEditorForm.cs (2)
69private PictureBox _infoPictureBox1; 70private PictureBox _infoPictureBox2;