1 write to pictureBox2
WinFormsControlsTest (1)
DragDrop.Designer.cs (1)
40
pictureBox2
= new PictureBox();
17 references to pictureBox2
WinFormsControlsTest (17)
DragDrop.cs (6)
34
pictureBox2
,
49
pictureBox2
.AllowDrop = true;
50
pictureBox2
.DragEnter += PictureBox_DragEnter;
51
pictureBox2
.DragDrop += PictureBox_DragDrop;
52
pictureBox2
.MouseDown += PictureBox_MouseDown;
53
pictureBox2
.GiveFeedback += PictureBox_GiveFeedback;
DragDrop.Designer.cs (11)
49
((System.ComponentModel.ISupportInitialize)
pictureBox2
).BeginInit();
65
tableLayoutPanel1.Controls.Add(
pictureBox2
, 0, 1);
118
pictureBox2
.BorderStyle = BorderStyle.FixedSingle;
119
pictureBox2
.Dock = DockStyle.Fill;
120
pictureBox2
.InitialImage = null;
121
pictureBox2
.Location = new Point(3, 115);
122
pictureBox2
.Name = "pictureBox2";
123
pictureBox2
.Size = new Size(109, 106);
124
pictureBox2
.TabIndex = 13;
125
pictureBox2
.TabStop = false;
206
((System.ComponentModel.ISupportInitialize)
pictureBox2
).EndInit();