2 writes to EditControl
System.Windows.Forms.Design (2)
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (2)
138EditControl = _readOnlyTextBoxLabel; 146EditControl = _textBox;
15 references to EditControl
System.Windows.Forms.Design (15)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (3)
242EditControl.AccessibleRole = _button.Ellipsis 250_button.AccessibleDescription = EditControl.AccessibleDescription; 251_button.AccessibleName = EditControl.AccessibleName;
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (12)
73EditControl!.Focus(); 112int specialPadding = EditControl is TextBox ? 2 : 0; 114EditControl!.Location = new Point(_editRegionLocation.X + GetTextBoxLeftPadding(textBoxPreferredHeight) + 1 + specialPadding, _editRegionLocation.Y + TextBoxLineInnerPadding + 1); 115EditControl.Width = _editRegionSize.Width - GetTextBoxRightPadding(textBoxPreferredHeight) - GetTextBoxLeftPadding(textBoxPreferredHeight) - specialPadding; 116EditControl.Height = _editRegionSize.Height - TextBoxLineInnerPadding * 2 - 1; 124[MemberNotNull(nameof(EditControl))] 149EditControl.AccessibleDescription = PropertyItem.Description; 150EditControl.AccessibleName = StripAmpersands(PropertyItem.DisplayName); 151EditControl.TabIndex = currentTabIndex++; 152EditControl.BringToFront(); 286protected override void OnValueChanged() => EditControl!.Text = PropertyDescriptor.Converter.ConvertToString(TypeDescriptorContext, Value); 312SetValue(EditControl!.Text);