1 write to _upDownButtons
System.Windows.Forms (1)
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
49_upDownButtons = new UpDownButtons(this);
14 references to _upDownButtons
System.Windows.Forms (14)
System\Windows\Forms\Controls\UpDown\DomainUpDown.cs (1)
525width = SizeFromClientSizeInternal(new(width, height)).Width + _upDownButtons.Width;
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (1)
829int width = SizeFromClientSizeInternal(new(textWidth, height)).Width + _upDownButtons.Width;
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (12)
61_upDownButtons.TabStop = false; 62_upDownButtons.Size = new Size(_defaultButtonsWidth, PreferredHeight); 63_upDownButtons.UpDown += OnUpDown; 65Controls.AddRange([_upDownButtons, _upDownEdit]); 440internal UpDownButtons UpDownButtonsInternal => _upDownButtons; 482_upDownButtons.Width = _defaultButtonsWidth; 854if (_upDownButtons is not null) 887if (_upDownButtons is not null) 889_upDownButtons.Bounds = upDownButtonsBounds; 890_upDownButtons.Invalidate(); 988toolTip.SetToolTip(_upDownButtons, caption); 1000toolTip.SetToolTip(_upDownButtons, caption);