6 references to TextBoxLineInnerPadding
System.Windows.Forms.Design (6)
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (6)
86protected virtual int GetTextBoxLeftPadding(int textBoxHeight) => TextBoxLineInnerPadding; 88protected virtual int GetTextBoxRightPadding(int textBoxHeight) => TextBoxLineInnerPadding; 96int height = textBoxPreferredHeight + LineVerticalPadding + TextBoxLineInnerPadding * 2 + 2; // 2 == border size 107_editRegionSize = new Size(EditInputWidth + textBoxWidthBonus, textBoxPreferredHeight + TextBoxLineInnerPadding * 2); 114EditControl!.Location = new Point(_editRegionLocation.X + GetTextBoxLeftPadding(textBoxPreferredHeight) + 1 + specialPadding, _editRegionLocation.Y + TextBoxLineInnerPadding + 1); 116EditControl.Height = _editRegionSize.Height - TextBoxLineInnerPadding * 2 - 1;