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