77 references to Width
System.Windows.Forms (14)
System\Windows\Forms\BoundsSpecified.cs (1)
43
Size =
Width
| Height,
System\Windows\Forms\Control.cs (3)
3533
set => SetBounds(_x, _y, value, _height, BoundsSpecified.
Width
);
5327
if ((_controlStyle & ControlStyles.FixedWidth) != ControlStyles.FixedWidth && (specified & BoundsSpecified.
Width
) != 0)
10009
if ((specified & BoundsSpecified.
Width
) == BoundsSpecified.None)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
27464
if ((specified & BoundsSpecified.
Width
) == BoundsSpecified.
Width
&& width > UpperSize)
System\Windows\Forms\Controls\Labels\Label.cs (1)
1386
if ((specified & BoundsSpecified.
Width
) != BoundsSpecified.None)
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (1)
1024
if ((specified & BoundsSpecified.
Width
) != BoundsSpecified.None)
System\Windows\Forms\Form.cs (3)
5178
_restoredWindowBoundsSpecified |= (specified & (BoundsSpecified.
Width
| BoundsSpecified.Height));
5190
if ((specified & BoundsSpecified.
Width
) != 0)
5214
if ((specified & BoundsSpecified.
Width
) != 0 || _restoreBounds.Width == -1)
System\Windows\Forms\Layout\CommonProperties.cs (1)
292
bool wChangedButNotSpecified = ((specified & BoundsSpecified.
Width
) == BoundsSpecified.None) & width != originalBounds.Width;
System\Windows\Forms\Layout\Containers\SplitContainer.cs (1)
2073
if ((specified & BoundsSpecified.
Width
) != BoundsSpecified.None && Orientation == Orientation.Vertical)
System\Windows\Forms\Scrolling\ScrollBar.cs (1)
489
specified &= ~BoundsSpecified.
Width
;
System.Windows.Forms.Design (10)
System\Windows\Forms\Design\Behavior\ResizeBehavior.cs (4)
711
specified |= BoundsSpecified.
Width
;
724
specified |= BoundsSpecified.
Width
;
764
if (((specified & BoundsSpecified.
Width
) == BoundsSpecified.
Width
) &&
System\Windows\Forms\Design\ComponentTray.cs (2)
2414
(specified & BoundsSpecified.
Width
) == BoundsSpecified.
Width
||
System\Windows\Forms\Design\DataGridViewColumnTypeEditor.Picker.cs (2)
61
if ((BoundsSpecified.
Width
& specified) == BoundsSpecified.
Width
)
System\Windows\Forms\Design\DesignBindingPicker.cs (2)
1667
if ((specified & BoundsSpecified.
Width
) == BoundsSpecified.
Width
)
System.Windows.Forms.Tests (53)
System\Windows\Forms\ControlTests.Methods.cs (43)
2447
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(0, 0), BoundsSpecified.
Width
, new Rectangle(1, 2, 0, 4) };
2453
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(1, 1), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
2459
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(2, 3), BoundsSpecified.
Width
, new Rectangle(1, 2, 6, 4) };
2465
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(-2, -3), BoundsSpecified.
Width
, new Rectangle(1, 2, -6, 4) };
2487
yield return new object[] { Rectangle.Empty, new Size(0, 0), BoundsSpecified.
Width
, new Rectangle(0, 0, 4, 0) };
2493
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(0, 0), BoundsSpecified.
Width
, new Rectangle(1, 2, 4, 4) };
2499
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(1, 1), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
2505
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(2, 3), BoundsSpecified.
Width
, new Rectangle(1, 2, 2, 4) };
2511
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(-2, -3), BoundsSpecified.
Width
, new Rectangle(1, 2, 6, 4) };
2620
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(0, 0), BoundsSpecified.
Width
, new Rectangle(1, 2, 0, 4) };
2626
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(1, 1), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
2632
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(2, 3), BoundsSpecified.
Width
, new Rectangle(1, 2, 6, 4) };
2638
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(-2, -3), BoundsSpecified.
Width
, new Rectangle(1, 2, -6, 4) };
2709
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(0, 0), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
2715
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(1, 1), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
2721
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(2, 3), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
2727
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(-2, -3), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
2759
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(0, 0), BoundsSpecified.
Width
, new Rectangle(1, 2, 0, 4) };
2765
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(1, 1), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
2771
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(2, 3), BoundsSpecified.
Width
, new Rectangle(1, 2, 6, 4) };
2777
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(-2, -3), BoundsSpecified.
Width
, new Rectangle(1, 2, -6, 4) };
2809
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(0, 0), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
2815
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(1, 1), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
2821
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(2, 3), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
2827
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(-2, -3), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
8123
yield return new object[] { 0, 0, 0, 0, BoundsSpecified.
Width
, 0, 0, 0, 0, 0 };
8124
yield return new object[] { -1, -2, -3, -4, BoundsSpecified.
Width
, 0, 0, -3, 0, 1 };
8125
yield return new object[] { 1, 0, 0, 0, BoundsSpecified.
Width
, 0, 0, 0, 0, 0 };
8126
yield return new object[] { 0, 2, 0, 0, BoundsSpecified.
Width
, 0, 0, 0, 0, 0 };
8127
yield return new object[] { 1, 2, 0, 0, BoundsSpecified.
Width
, 0, 0, 0, 0, 0 };
8128
yield return new object[] { 0, 0, 1, 0, BoundsSpecified.
Width
, 0, 0, 1, 0, 1 };
8129
yield return new object[] { 0, 0, 0, 2, BoundsSpecified.
Width
, 0, 0, 0, 0, 0 };
8130
yield return new object[] { 0, 0, 1, 2, BoundsSpecified.
Width
, 0, 0, 1, 0, 1 };
8131
yield return new object[] { 1, 2, 30, 40, BoundsSpecified.
Width
, 0, 0, 30, 0, 1 };
8500
yield return new object[] { 0, 0, 0, 0, BoundsSpecified.
Width
, 0, 0, 0, 0, 0, 0 };
8501
yield return new object[] { -1, -2, -3, -4, BoundsSpecified.
Width
, 0, 0, -3, 0, 1, 2 };
8502
yield return new object[] { 1, 0, 0, 0, BoundsSpecified.
Width
, 0, 0, 0, 0, 0, 0 };
8503
yield return new object[] { 0, 2, 0, 0, BoundsSpecified.
Width
, 0, 0, 0, 0, 0, 0 };
8504
yield return new object[] { 1, 2, 0, 0, BoundsSpecified.
Width
, 0, 0, 0, 0, 0, 0 };
8505
yield return new object[] { 0, 0, 1, 0, BoundsSpecified.
Width
, 0, 0, 1, 0, 1, 2 };
8506
yield return new object[] { 0, 0, 0, 2, BoundsSpecified.
Width
, 0, 0, 0, 0, 0, 0 };
8507
yield return new object[] { 0, 0, 1, 2, BoundsSpecified.
Width
, 0, 0, 1, 0, 1, 2 };
8508
yield return new object[] { 1, 2, 30, 40, BoundsSpecified.
Width
, 0, 0, 30, 0, 1, 2 };
System\Windows\Forms\ScrollBarTests.cs (8)
1777
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(0, 0), BoundsSpecified.
Width
, new Rectangle(1, 2, 0, 4) };
1783
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(1, 1), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
1789
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(2, 3), BoundsSpecified.
Width
, new Rectangle(1, 2, 6, 4) };
1795
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(-2, -3), BoundsSpecified.
Width
, new Rectangle(1, 2, -6, 4) };
1825
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(0, 0), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
1831
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(1, 1), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
1837
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(2, 3), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
1843
yield return new object[] { new Rectangle(1, 2, 3, 4), new Size(-2, -3), BoundsSpecified.
Width
, new Rectangle(1, 2, 3, 4) };
TrackBarTests.cs (2)
2888
if ((specified & BoundsSpecified.
Width
) != 0)
2905
foreach (BoundsSpecified specified in new BoundsSpecified[] { BoundsSpecified.
Width
, BoundsSpecified.Size, BoundsSpecified.All })