3 overrides of ParticipatesWithSnapLines
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\FlowPanelDesigner.cs (1)
11public override bool ParticipatesWithSnapLines => false;
System\Windows\Forms\Design\TabControlDesigner.cs (1)
29public override bool ParticipatesWithSnapLines
System\Windows\Forms\Design\ToolStripPanelDesigner.cs (1)
110public override bool ParticipatesWithSnapLines => false;
11 references to ParticipatesWithSnapLines
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\Behavior\DropSourceBehavior.cs (1)
657if (newDestHost.GetDesigner(target) is ControlDesigner designer && !designer.ParticipatesWithSnapLines)
System\Windows\Forms\Design\Behavior\ToolboxItemSnapLineBehavior.cs (1)
49if (controlDesigner is not null && !controlDesigner.ParticipatesWithSnapLines)
System\Windows\Forms\Design\ParentControlDesigner.cs (1)
1929if (_dragManager is null && ParticipatesWithSnapLines && _mouseDragTool is not null && BehaviorService.UseSnapLines)
System\Windows\Forms\Design\TabControlDesigner.cs (1)
42return pageDesigner.ParticipatesWithSnapLines;
System.Windows.Forms.Design.Tests (7)
ControlDesignerTests.cs (1)
73_designer.ParticipatesWithSnapLines.Should().BeTrue();
System\Windows\Forms\Design\FlowPanelDesignerTests.cs (1)
35designer.ParticipatesWithSnapLines.Should().BeFalse();
System\Windows\Forms\Design\TabControlDesignerTests.cs (5)
135bool result = designer.ParticipatesWithSnapLines; 152pageDesignerMock.Setup(p => p.ParticipatesWithSnapLines).Returns(true); 156bool result = designer.ParticipatesWithSnapLines; 171pageDesignerMock.Setup(p => p.ParticipatesWithSnapLines).Returns(false); 175bool result = designer.ParticipatesWithSnapLines;