1 write to _upDownEdit
System.Windows.Forms (1)
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
50_upDownEdit = new UpDownEdit(this)
29 references to _upDownEdit
System.Windows.Forms (29)
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (29)
56_upDownEdit.KeyDown += OnTextBoxKeyDown; 57_upDownEdit.KeyPress += OnTextBoxKeyPress; 58_upDownEdit.TextChanged += OnTextBoxTextChanged; 59_upDownEdit.LostFocus += OnTextBoxLostFocus; 60_upDownEdit.Resize += OnTextBoxResize; 65Controls.AddRange([_upDownButtons, _upDownEdit]); 134get => _upDownEdit.BackColor; 138_upDownEdit.BackColor = value; 211_upDownEdit.ContextMenuStrip = value; 259public override bool Focused => _upDownEdit.Focused; 266get => _upDownEdit.ForeColor; 270_upDownEdit.ForeColor = value; 364get => _upDownEdit.ReadOnly; 365set => _upDownEdit.ReadOnly = value; 375get => _upDownEdit.Text; 382_upDownEdit.Text = value; 406get => _upDownEdit.TextAlign; 411_upDownEdit.TextAlign = value; 415internal TextBox TextBox => _upDownEdit; 463if (!_upDownEdit.SupportsUiaProviders) 465_upDownEdit.ReleaseUiaProvider(_upDownEdit.HWNDInternal); 518Rectangle editBounds = _upDownEdit.Bounds; 578if (!Enabled && BorderStyle != BorderStyle.None && !_upDownEdit.ShouldSerializeBackColor()) 847if (_upDownEdit is not null) 882_upDownEdit?.Bounds = upDownEditBounds; 894public void Select(int start, int length) => _upDownEdit.Select(start, length); 984toolTip.SetToolTip(_upDownEdit, caption); 996toolTip.SetToolTip(_upDownEdit, caption);