1 write to richTextBox2
WinFormsControlsTest (1)
RichTextBoxes.Designer.cs (1)
35
this.
richTextBox2
= new System.Windows.Forms.RichTextBox();
13 references to richTextBox2
WinFormsControlsTest (13)
RichTextBoxes.cs (4)
23
richTextBox2
.Rtf = @"{\rtf1\ansi\ansicpg1252\deff0\nouicompat\deflang4105{\fonttbl{\f0\fnil\fcharset0 Calibri;}}
33
richTextBox2
.DetectUrls = false;
35
MakeLink(
richTextBox2
, "#data#custom link");
36
MakeLink(
richTextBox2
, "custom link#data#");
RichTextBoxes.Designer.cs (9)
51
this.
richTextBox2
.Dock = System.Windows.Forms.DockStyle.Fill;
52
this.
richTextBox2
.Location = new System.Drawing.Point(0, 104);
53
this.
richTextBox2
.Name = "richTextBox2";
54
this.
richTextBox2
.Size = new System.Drawing.Size(455, 99);
55
this.
richTextBox2
.TabIndex = 1;
56
this.
richTextBox2
.Text = "";
57
this.
richTextBox2
.KeyDown += this.RichTextKeyDown;
58
this.
richTextBox2
.LinkClicked += this.LinkClicked;
65
this.Controls.Add(this.
richTextBox2
);