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