5 types derived from Line
System.Windows.Forms.Design (5)
System\ComponentModel\Design\DesignerActionPanel.MethodLine.cs (1)
12private sealed class MethodLine : Line
System\ComponentModel\Design\DesignerActionPanel.PanelHeaderLine.cs (1)
11private sealed class PanelHeaderLine : Line
System\ComponentModel\Design\DesignerActionPanel.PropertyLine.cs (1)
12private abstract class PropertyLine : Line
System\ComponentModel\Design\DesignerActionPanel.SeparatorLine.cs (1)
11private sealed class SeparatorLine : Line
System\ComponentModel\Design\DesignerActionPanel.TextLine.cs (1)
11private class TextLine : Line
20 references to Line
System.Windows.Forms.Design (20)
System\ComponentModel\Design\DesignerActionPanel.CheckBoxPropertyLine.cs (1)
69public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.cs (11)
40private readonly List<Line> _lines; 170private Line? FocusedLine => ActiveControl?.Tag as Line; 378Line line = _lines[i]; 503Line line = _lines[i]; 531Line? focusedLine = FocusedLine; 810Line? focusedLine = FocusedLine; 862Line oldLine = _lines[i]; 879Line newLine = newLineInfo.CreateLine(_serviceProvider, this); 893Line excessLine = _lines[i]; 901foreach (Line line in _lines)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (1)
478public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.HeaderLine.cs (1)
22public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.LineInfo.cs (1)
12public abstract Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel);
System\ComponentModel\Design\DesignerActionPanel.MethodLine.cs (1)
122public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.PanelHeaderLine.cs (1)
127public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.SeparatorLine.cs (1)
40public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (1)
364public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)
System\ComponentModel\Design\DesignerActionPanel.TextLine.cs (1)
78public override Line CreateLine(IServiceProvider serviceProvider, DesignerActionPanel actionPanel)