19 references to AllSizeable
System.Windows.Forms.Design (14)
System\Windows\Forms\Design\ControlDesigner.cs (3)
220? rules | SelectionRules.AllSizeable 225rules |= SelectionRules.AllSizeable; 756else if ((rules & SelectionRules.AllSizeable) == SelectionRules.None)
System\Windows\Forms\Design\LabelDesigner.cs (1)
155rules &= ~SelectionRules.AllSizeable;
System\Windows\Forms\Design\OleDragDropHandler.cs (1)
452if ((rules & SelectionRules.AllSizeable) != SelectionRules.None || Control.MouseButtons == MouseButtons.None)
System\Windows\Forms\Design\PictureBoxDesigner.cs (1)
97rules &= ~SelectionRules.AllSizeable;
System\Windows\Forms\Design\SelectionUIService.cs (2)
280else if ((rules & SelectionRules.AllSizeable) != 0) 1078if ((_dragRules & SelectionRules.AllSizeable) == SelectionRules.None)
System\Windows\Forms\Design\SelectionUIService.SelectionUIItem.cs (3)
152if (((GetRules() & SelectionRules.Locked) == SelectionRules.None) && (GetRules() & SelectionRules.AllSizeable) != SelectionRules.None) 195if ((GetRules() & SelectionRules.AllSizeable) != SelectionRules.None) 417if ((rules & SelectionRules.AllSizeable) == SelectionRules.None)
System\Windows\Forms\Design\TabPageDesigner.cs (1)
23rules &= ~SelectionRules.AllSizeable;
System\Windows\Forms\Design\TextBoxBaseDesigner.cs (1)
131rules |= SelectionRules.AllSizeable;
System\Windows\Forms\Design\TrackBarDesigner.cs (1)
20rules |= SelectionRules.AllSizeable;
System.Windows.Forms.Design.Tests (5)
ControlDesignerTests.cs (1)
108Assert.Equal(SelectionRules.Visible | SelectionRules.AllSizeable | SelectionRules.Moveable, selectionRules);
System\Windows\Forms\Design\LabelDesignerTests.cs (1)
39selectionRules.Should().Be(SelectionRules.AllSizeable | SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\PictureBoxDesignerTests.cs (1)
29selectionRules.Should().Be(SelectionRules.AllSizeable | SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\RadioButtonDesignerTests.cs (1)
41selectionRules.Should().Be(SelectionRules.AllSizeable | SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\TabPageDesignerTests.cs (1)
64selectionRules.Should().Be(SelectionRules.AllSizeable | SelectionRules.Moveable | SelectionRules.Visible);