1 write to Width
System.Windows.Forms (1)
winforms\Managed\System\WinForms\BindingNavigator.cs (1)
231PositionItem.Width = 50;
12 references to Width
System.Windows.Forms (12)
winforms\Managed\System\WinForms\ToolStrip.cs (2)
2344Point midPointOfCurrent = new Point(selectedItem.Bounds.X + selectedItem.Width / 2, 2365Point otherItemMidLocation = new Point(otherItem.Bounds.X + otherItem.Width/2, (down)? otherItem.Bounds.Top : otherItem.Bounds.Bottom);
winforms\Managed\System\WinForms\ToolStripDropDownItem.cs (3)
315offset.X = -dropDownBounds.Width + this.Width; 325offset.X = -dropDownBounds.Width + this.Width; 329offset.X = this.Width;
winforms\Managed\System\WinForms\ToolStripHighContrastRenderer.cs (2)
95 e.Graphics.DrawRectangle(SystemPens.ButtonHighlight, new Rectangle(0, 0, e.Item.Width - 1, e.Item.Height - 1)); 175 e.Graphics.DrawRectangle(SystemPens.ButtonHighlight, 0, 0, e.Item.Width - 1, e.Item.Height - 1);
winforms\Managed\System\WinForms\ToolStripProfessionalRenderer.cs (2)
161overflowArrowRect = new Rectangle(item.Width - overflowButtonWidth, item.Height - overflowArrowOffsetY, overflowArrowWidth, overflowArrowHeight); 291ControlPaint.DrawBorder3D(e.Graphics, new Rectangle(0,0,item.Width, item.Height), item.BorderStyle, (Border3DSide)item.BorderSides);
winforms\Managed\System\WinForms\ToolStripSplitButton.cs (2)
372dropDownButtonBounds = new Rectangle(Point.Empty, new Size(Math.Min(this.Width, DropDownButtonWidth), this.Height)); 375int splitButtonButtonWidth = Math.Max(0, this.Width - dropDownButtonBounds.Width);
winforms\Managed\System\WinForms\ToolStripSystemRenderer.cs (1)
446ControlPaint.DrawBorder3D(e.Graphics, new Rectangle(0,0,item.Width-1, item.Height-1), item.BorderStyle, (Border3DSide)item.BorderSides);