1 write to richTextBox1
WinFormsControlsTest (1)
RichTextBoxes.Designer.cs (1)
34this.richTextBox1 = new System.Windows.Forms.RichTextBox();
10 references to richTextBox1
WinFormsControlsTest (10)
RichTextBoxes.cs (1)
17richTextBox1.LoadFile(File.OpenRead(@"Data\example.rtf"), RichTextBoxStreamType.RichText);
RichTextBoxes.Designer.cs (9)
40this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Top; 41this.richTextBox1.Location = new System.Drawing.Point(0, 0); 42this.richTextBox1.Name = "richTextBox1"; 43this.richTextBox1.Size = new System.Drawing.Size(455, 104); 44this.richTextBox1.TabIndex = 0; 45this.richTextBox1.Text = ""; 46this.richTextBox1.KeyDown += this.RichTextKeyDown; 47this.richTextBox1.LinkClicked += this.LinkClicked; 66this.Controls.Add(this.richTextBox1);