1 write to pictureBox1
WinFormsControlsTest (1)
DragDrop.Designer.cs (1)
39
pictureBox1
= new PictureBox();
17 references to pictureBox1
WinFormsControlsTest (17)
DragDrop.cs (6)
33
pictureBox1
,
43
pictureBox1
.AllowDrop = true;
44
pictureBox1
.DragEnter += PictureBox_DragEnter;
45
pictureBox1
.DragDrop += PictureBox_DragDrop;
46
pictureBox1
.MouseDown += PictureBox_MouseDown;
47
pictureBox1
.GiveFeedback += PictureBox_GiveFeedback;
DragDrop.Designer.cs (11)
48
((System.ComponentModel.ISupportInitialize)
pictureBox1
).BeginInit();
64
tableLayoutPanel1.Controls.Add(
pictureBox1
, 0, 0);
107
pictureBox1
.BorderStyle = BorderStyle.FixedSingle;
108
pictureBox1
.Dock = DockStyle.Fill;
109
pictureBox1
.InitialImage = null;
110
pictureBox1
.Location = new Point(3, 3);
111
pictureBox1
.Name = "pictureBox1";
112
pictureBox1
.Size = new Size(109, 106);
113
pictureBox1
.TabIndex = 13;
114
pictureBox1
.TabStop = false;
205
((System.ComponentModel.ISupportInitialize)
pictureBox1
).EndInit();