1 write to _textBox
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (1)
47
_textBox
= new TextBox
9 references to _textBox
System.Windows.Forms.Design (9)
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (9)
54
_textBox
.TextChanged += OnTextBoxTextChanged;
55
_textBox
.KeyDown += OnTextBoxKeyDown;
56
_textBox
.LostFocus += OnTextBoxLostFocus;
59
AddedControls.Add(
_textBox
);
94
int textBoxPreferredHeight =
_textBox
.GetPreferredSize(new Size(int.MaxValue, int.MaxValue)).Height;
135
_textBox
.Visible = false;
137
_textBox
.Location = new Point(int.MaxValue, int.MaxValue);
145
_textBox
.Visible = true;
146
EditControl =
_textBox
;