12 references to LineLeftMargin
System.Windows.Forms.Design (12)
System\ComponentModel\Design\DesignerActionPanel.CheckBoxPropertyLine.cs (2)
39
_checkBox.Location = new Point(
LineLeftMargin
, top + LineVerticalPadding / 2);
43
return checkBoxPreferredSize + new Size(
LineLeftMargin
+ LineRightMargin, LineVerticalPadding);
System\ComponentModel\Design\DesignerActionPanel.MethodLine.cs (2)
48
_linkLabel.Location = new Point(
LineLeftMargin
, top + LineVerticalPadding / 2);
52
return linkLabelSize + new Size(
LineLeftMargin
+ LineRightMargin, LineVerticalPadding);
System\ComponentModel\Design\DesignerActionPanel.PanelHeaderLine.cs (2)
65
_titleLabel.Location = new Point(
LineLeftMargin
, top + PanelHeaderVerticalPadding);
68
_subtitleLabel.Location = new Point(
LineLeftMargin
, top + PanelHeaderVerticalPadding * 2 + titleSize.Height);
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (4)
80
return
LineLeftMargin
;
83
return
LineLeftMargin
+ _label.GetPreferredSize(new Size(int.MaxValue, int.MaxValue)).Width + TextBoxLineCenterMargin;
109
_label.Location = new Point(
LineLeftMargin
, top);
304
_editXPos =
LineLeftMargin
;
System\ComponentModel\Design\DesignerActionPanel.TextLine.cs (2)
43
_label.Location = new Point(
LineLeftMargin
, top + LineVerticalPadding / 2);
47
return labelSize + new Size(
LineLeftMargin
+ LineRightMargin, LineVerticalPadding);