20 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)
155
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 (6)
System\Windows\Forms\Design\LabelDesignerTests.cs (1)
39
selectionRules.Should().Be(SelectionRules.
AllSizeable
| SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\PictureBoxDesignerTests.cs (1)
29
selectionRules.Should().Be(SelectionRules.
AllSizeable
| SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\RadioButtonDesignerTests.cs (1)
41
selectionRules.Should().Be(SelectionRules.
AllSizeable
| SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\TabPageDesignerTests.cs (1)
64
selectionRules.Should().Be(SelectionRules.
AllSizeable
| SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\TextBoxBaseDesignerTests.cs (2)
68
[InlineData(true, true, SelectionRules.
AllSizeable
)]
69
[InlineData(false, false, SelectionRules.
AllSizeable
)]