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; 255public override bool Focused => _upDownEdit.Focused; 262get => _upDownEdit.ForeColor; 266_upDownEdit.ForeColor = value; 360get => _upDownEdit.ReadOnly; 361set => _upDownEdit.ReadOnly = value; 371get => _upDownEdit.Text; 378_upDownEdit.Text = value; 402get => _upDownEdit.TextAlign; 407_upDownEdit.TextAlign = value; 411internal TextBox TextBox => _upDownEdit; 459if (!_upDownEdit.SupportsUiaProviders) 461_upDownEdit.ReleaseUiaProvider(_upDownEdit.HWNDInternal); 514Rectangle editBounds = _upDownEdit.Bounds; 574if (!Enabled && BorderStyle != BorderStyle.None && !_upDownEdit.ShouldSerializeBackColor()) 843if (_upDownEdit is not null) 878_upDownEdit?.Bounds = upDownEditBounds; 890public void Select(int start, int length) => _upDownEdit.Select(start, length); 980toolTip.SetToolTip(_upDownEdit, caption); 992toolTip.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);