7 overrides of SnapLines
System.Windows.Forms.Design (7)
System\Windows\Forms\Design\ButtonBaseDesigner.cs (1)
41
public override IList
SnapLines
System\Windows\Forms\Design\ComboBoxDesigner.cs (1)
26
public override IList
SnapLines
System\Windows\Forms\Design\DateTimePickerDesigner.cs (1)
20
public override IList
SnapLines
System\Windows\Forms\Design\LabelDesigner.cs (1)
26
public override IList
SnapLines
System\Windows\Forms\Design\ParentControlDesigner.cs (1)
331
public override IList
SnapLines
System\Windows\Forms\Design\TextBoxBaseDesigner.cs (1)
25
public override IList
SnapLines
System\Windows\Forms\Design\UpDownBaseDesigner.cs (1)
38
public override IList
SnapLines
23 references to SnapLines
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\Behavior\BehaviorService.cs (1)
802
foreach (SnapLine line in designer.
SnapLines
)
System\Windows\Forms\Design\Behavior\DragAssistanceManager.cs (1)
196
IList snapLines = controlDesigner.
SnapLines
;
System.Windows.Forms.Design.Tests (21)
ButtonBaseDesignerTests.cs (1)
52
buttonBaseDesigner.
SnapLines
.Count.Should().Be(9);
ControlDesignerTests.cs (2)
58
controlDesigner.
SnapLines
.Should().NotBeNull();
59
controlDesigner.
SnapLines
.Count.Should().Be(8);
System\Windows\Forms\Design\Behavior\SnapLineTests.cs (10)
249
baseDesigner.
SnapLines
.Count.Should().Be(8);
254
derivedDesigner.
SnapLines
.Count.Should().Be(9);
259
derivedDesigner.
SnapLines
.Count.Should().Be(9);
264
derivedDesigner.
SnapLines
.Count.Should().Be(9);
269
derivedDesigner.
SnapLines
.Count.Should().Be(9);
273
derivedDesigner.
SnapLines
.Count.Should().Be(12);
279
derivedDesigner.
SnapLines
.Count.Should().Be(4);
284
derivedDesigner.
SnapLines
.Count.Should().Be(9);
289
derivedDesigner.
SnapLines
.Count.Should().Be(4);
294
derivedDesigner.
SnapLines
.Count.Should().Be(9);
System\Windows\Forms\Design\ComboBoxDesignerTests.cs (1)
27
comboBoxDesigner.
SnapLines
.Count.Should().Be(9);
System\Windows\Forms\Design\DateTimePickerDesignerTests.cs (1)
25
dateTimePickerDesigner.
SnapLines
.Count.Should().Be(9);
System\Windows\Forms\Design\LabelDesignerTests.cs (1)
25
labelDesigner.
SnapLines
.Count.Should().Be(9);
System\Windows\Forms\Design\MaskedTextBoxDesignerTests.cs (1)
28
public void SnapLines_WithDefaultMaskedTextBox_ShouldReturnExpectedCount() => _maskedTextBoxDesigner.
SnapLines
.Count.Should().Be(9);
System\Windows\Forms\Design\RadioButtonDesignerTests.cs (1)
27
radioButtonDesigner.
SnapLines
.Count.Should().Be(9);
System\Windows\Forms\Design\RichTextBoxDesignerTests.cs (1)
40
_designer.
SnapLines
.Count.Should().Be(9);
System\Windows\Forms\Design\TextBoxBaseDesignerTests.cs (1)
51
List<SnapLine> snapLines = (List<SnapLine>)_designer.
SnapLines
;
System\Windows\Forms\Design\UpDownBaseDesignerTests.cs (1)
52
List<SnapLine> snapLines = (List<SnapLine>)_designer.
SnapLines
;