1 write to textBox1
TrimTest (1)
Form1.Designer.cs (1)
35textBox1 = new TextBox();
13 references to textBox1
TrimTest (13)
Form1.cs (1)
37textBox1.Text = text;
Form1.Designer.cs (12)
52splitContainer1.Panel1.Controls.Add(textBox1); 64textBox1.AllowDrop = true; 65textBox1.Dock = DockStyle.Fill; 66textBox1.Location = new Point(0, 0); 67textBox1.Multiline = true; 68textBox1.Name = "textBox1"; 69textBox1.Size = new Size(457, 450); 70textBox1.TabIndex = 0; 71textBox1.Text = "This is a multiline TextBox. Dragging text to it will replace the content."; 72textBox1.DragDrop += textBox1_DragDrop; 73textBox1.DragEnter += textBox1_DragEnter; 74textBox1.DragOver += textBox1_DragOver;