40 references to LeftSizeable
System.Windows.Forms.Design (29)
System\Windows\Forms\Design\Behavior\GrabHandleGlyph.cs (3)
35
rules = SelectionRules.TopSizeable | SelectionRules.
LeftSizeable
;
50
rules = SelectionRules.BottomSizeable | SelectionRules.
LeftSizeable
;
84
rules = SelectionRules.
LeftSizeable
;
System\Windows\Forms\Design\Behavior\ResizeBehavior.cs (7)
106
else if ((rules & SelectionRules.
LeftSizeable
) != 0)
187
else if ((rules & SelectionRules.
LeftSizeable
) != 0)
561
else if ((((_targetResizeRules & SelectionRules.RightSizeable) != 0) || ((_targetResizeRules & SelectionRules.
LeftSizeable
) != 0)) &&
709
((((_targetResizeRules & SelectionRules.
LeftSizeable
) != 0) && ((resizeRules & SelectionRules.
LeftSizeable
) != 0)) && (fRTL)))
722
((((_targetResizeRules & SelectionRules.
LeftSizeable
) != 0) && ((resizeRules & SelectionRules.
LeftSizeable
) != 0)) && (!fRTL)))
System\Windows\Forms\Design\Behavior\SelectionBorderGlyph.cs (2)
60
if ((selRules & SelectionRules.
LeftSizeable
) != 0)
63
rules = SelectionRules.
LeftSizeable
;
System\Windows\Forms\Design\ControlCommandSet.cs (1)
486
if ((rules & SelectionRules.
LeftSizeable
) != 0)
System\Windows\Forms\Design\ControlDesigner.cs (7)
251
rules &= ~(SelectionRules.Moveable | SelectionRules.TopSizeable | SelectionRules.
LeftSizeable
| SelectionRules.RightSizeable);
254
rules &= ~(SelectionRules.Moveable | SelectionRules.TopSizeable | SelectionRules.
LeftSizeable
| SelectionRules.BottomSizeable);
260
rules &= ~(SelectionRules.Moveable | SelectionRules.
LeftSizeable
| SelectionRules.BottomSizeable | SelectionRules.RightSizeable);
263
rules &= ~(SelectionRules.Moveable | SelectionRules.TopSizeable | SelectionRules.
LeftSizeable
| SelectionRules.RightSizeable | SelectionRules.BottomSizeable);
784
if ((rules & SelectionRules.
LeftSizeable
) != 0)
798
if ((rules & SelectionRules.
LeftSizeable
) != 0)
809
if ((rules & SelectionRules.
LeftSizeable
) != 0)
System\Windows\Forms\Design\DocumentDesigner.cs (1)
169
rules &= ~(SelectionRules.Moveable | SelectionRules.TopSizeable | SelectionRules.
LeftSizeable
);
System\Windows\Forms\Design\MonthCalendarDesigner.cs (1)
26
rules &= ~(SelectionRules.TopSizeable | SelectionRules.
LeftSizeable
);
System\Windows\Forms\Design\SelectionRules.cs (1)
67
AllSizeable = TopSizeable | BottomSizeable |
LeftSizeable
| RightSizeable
System\Windows\Forms\Design\SelectionUIHandler.cs (1)
370
if ((_rules & SelectionRules.
LeftSizeable
) != 0)
System\Windows\Forms\Design\SelectionUIService.cs (2)
558
rules |= SelectionRules.
LeftSizeable
;
1073
if ((_dragRules & SelectionRules.Moveable) == SelectionRules.None && (_dragRules & (SelectionRules.TopSizeable | SelectionRules.
LeftSizeable
)) == SelectionRules.None)
System\Windows\Forms\Design\SelectionUIService.SelectionUIItem.cs (2)
438
if ((rules & SelectionRules.
LeftSizeable
) != SelectionRules.
LeftSizeable
)
System\Windows\Forms\Design\TrackBarDesigner.cs (1)
32
rules &= ~(SelectionRules.
LeftSizeable
| SelectionRules.RightSizeable);
System.Windows.Forms.Design.Tests (11)
ControlDesignerTests.cs (7)
89
[InlineData(DockStyle.Top, SelectionRules.Moveable | SelectionRules.TopSizeable | SelectionRules.
LeftSizeable
| SelectionRules.RightSizeable)]
90
[InlineData(DockStyle.Left, SelectionRules.Moveable | SelectionRules.TopSizeable | SelectionRules.
LeftSizeable
| SelectionRules.BottomSizeable)]
92
[InlineData(DockStyle.Bottom, SelectionRules.Moveable | SelectionRules.
LeftSizeable
| SelectionRules.BottomSizeable | SelectionRules.RightSizeable)]
93
[InlineData(DockStyle.Fill, SelectionRules.Moveable | SelectionRules.TopSizeable | SelectionRules.
LeftSizeable
| SelectionRules.RightSizeable | SelectionRules.BottomSizeable)]
308
(typeof(GrabHandleGlyph), SelectionRules.TopSizeable | SelectionRules.
LeftSizeable
),
311
(typeof(GrabHandleGlyph), SelectionRules.BottomSizeable | SelectionRules.
LeftSizeable
),
317
(typeof(SelectionBorderGlyph), SelectionRules.
LeftSizeable
),
System\Windows\Forms\Design\ComboBoxDesignerTests.cs (1)
41
selectionRules.Should().Be(SelectionRules.
LeftSizeable
| SelectionRules.RightSizeable | SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\DateTimePickerDesignerTests.cs (1)
43
selectionRules.Should().Be(SelectionRules.
LeftSizeable
| SelectionRules.RightSizeable | SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\MaskedTextBoxDesignerTests.cs (1)
31
selectionRules.Should().Be(SelectionRules.
LeftSizeable
| SelectionRules.RightSizeable | SelectionRules.Moveable | SelectionRules.Visible);
System\Windows\Forms\Design\TextBoxBaseDesignerTests.cs (1)
67
[InlineData(false, true, SelectionRules.
LeftSizeable
| SelectionRules.RightSizeable)]