1 write to _upDownEdit
System.Windows.Forms (1)
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
50_upDownEdit = new UpDownEdit(this)
32 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]); 130get => _upDownEdit.BackColor; 134_upDownEdit.BackColor = value; 207_upDownEdit.ContextMenuStrip = value; 257public override bool Focused => _upDownEdit.Focused; 264get => _upDownEdit.ForeColor; 268_upDownEdit.ForeColor = value; 362get => _upDownEdit.ReadOnly; 363set => _upDownEdit.ReadOnly = value; 373get => _upDownEdit.Text; 380_upDownEdit.Text = value; 404get => _upDownEdit.TextAlign; 409_upDownEdit.TextAlign = value; 413internal TextBox TextBox => _upDownEdit; 461if (!_upDownEdit.SupportsUiaProviders) 463_upDownEdit.ReleaseUiaProvider(_upDownEdit.HWNDInternal); 516Rectangle editBounds = _upDownEdit.Bounds; 576if (!Enabled && BorderStyle != BorderStyle.None && !_upDownEdit.ShouldSerializeBackColor()) 845if (_upDownEdit is not null) 880_upDownEdit?.Bounds = upDownEditBounds; 892public void Select(int start, int length) => _upDownEdit.Select(start, length); 982toolTip.SetToolTip(_upDownEdit, caption); 994toolTip.SetToolTip(_upDownEdit, caption);
System.Windows.Forms.Tests (3)
System\Windows\Forms\UpDownBaseTests.cs (3)
3023string actualEditToolTipText = toolTip.GetToolTip(upDownBase._upDownEdit); 3032actualEditToolTipText = toolTip.GetToolTip(upDownBase._upDownEdit); 3039actualEditToolTipText = toolTip.GetToolTip(upDownBase._upDownEdit);