22 references to AllSizeable
System.Windows.Forms.Design (14)
System\Windows\Forms\Design\ControlDesigner.cs (3)
220
? rules | SelectionRules.
AllSizeable
225
rules |= SelectionRules.
AllSizeable
;
756
else if ((rules & SelectionRules.
AllSizeable
) == SelectionRules.None)
System\Windows\Forms\Design\LabelDesigner.cs (1)
153
rules &= ~SelectionRules.
AllSizeable
;
System\Windows\Forms\Design\OleDragDropHandler.cs (1)
452
if ((rules & SelectionRules.
AllSizeable
) != SelectionRules.None || Control.MouseButtons == MouseButtons.None)
System\Windows\Forms\Design\PictureBoxDesigner.cs (1)
97
rules &= ~SelectionRules.
AllSizeable
;
System\Windows\Forms\Design\SelectionUIService.cs (2)
280
else if ((rules & SelectionRules.
AllSizeable
) != 0)
1078
if ((_dragRules & SelectionRules.
AllSizeable
) == SelectionRules.None)
System\Windows\Forms\Design\SelectionUIService.SelectionUIItem.cs (3)
152
if (((GetRules() & SelectionRules.Locked) == SelectionRules.None) && (GetRules() & SelectionRules.
AllSizeable
) != SelectionRules.None)
195
if ((GetRules() & SelectionRules.
AllSizeable
) != SelectionRules.None)
417
if ((rules & SelectionRules.
AllSizeable
) == SelectionRules.None)
System\Windows\Forms\Design\TabPageDesigner.cs (1)
23
rules &= ~SelectionRules.
AllSizeable
;
System\Windows\Forms\Design\TextBoxBaseDesigner.cs (1)
131
rules |= SelectionRules.
AllSizeable
;
System\Windows\Forms\Design\TrackBarDesigner.cs (1)
20
rules |= SelectionRules.
AllSizeable
;
System.Windows.Forms.Design.Tests (8)
System\Windows\Forms\Design\LabelDesignerTests.cs (1)
41
selectionRules.Should().Be(SelectionRules.
AllSizeable
| SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\OleDragDropHandlerTests.cs (1)
88
bool result = _oleDragDropHandler.DoBeginDrag(components, SelectionRules.
AllSizeable
, 0, 0);
System\Windows\Forms\Design\PictureBoxDesignerTests.cs (1)
31
selectionRules.Should().Be(SelectionRules.
AllSizeable
| SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\RadioButtonDesignerTests.cs (1)
43
selectionRules.Should().Be(SelectionRules.
AllSizeable
| SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\TabPageDesignerTests.cs (1)
62
selectionRules.Should().Be(SelectionRules.
AllSizeable
| SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\TextBoxBaseDesignerTests.cs (2)
66
[InlineData(true, true, SelectionRules.
AllSizeable
)]
67
[InlineData(false, false, SelectionRules.
AllSizeable
)]
System\Windows\Forms\Design\ToolStripPanelDesignerTests.cs (1)
61
selectionRules.Should().Be(SelectionRules.
AllSizeable
| SelectionRules.Moveable | SelectionRules.Visible);