1 write to textBox
WinFormsControlsTest (1)
DragDrop.Designer.cs (1)
37
textBox
= new TextBox();
19 references to textBox
WinFormsControlsTest (19)
DragDrop.cs (10)
73
textBox
.AllowDrop = true;
74
textBox
.DragEnter += TextBox_DragEnter;
75
textBox
.DragOver += TextBox_DragOver;
76
textBox
.DragDrop += TextBox_DragDrop;
93
textBox
.Clear();
215
textBox
.Text +=
textBox
.Text.Length > 0
220
textBox
.SelectionStart =
textBox
.Text.Length;
221
textBox
.SelectionLength = 0;
DragDrop.Designer.cs (9)
62
tableLayoutPanel1.Controls.Add(
textBox
, 2, 0);
85
textBox
.Dock = DockStyle.Fill;
86
textBox
.Font = new Font("Segoe UI", 14.25F);
87
textBox
.Location = new Point(735, 3);
88
textBox
.Multiline = true;
89
textBox
.Name = "textBox";
90
tableLayoutPanel1.SetRowSpan(
textBox
, 5);
91
textBox
.Size = new Size(488, 554);
92
textBox
.TabIndex = 18;