1 write to _upDownEdit
System.Windows.Forms (1)
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
62_upDownEdit = new UpDownEdit(this)
30 references to _upDownEdit
System.Windows.Forms (30)
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (30)
68_upDownEdit.KeyDown += OnTextBoxKeyDown; 69_upDownEdit.KeyPress += OnTextBoxKeyPress; 70_upDownEdit.TextChanged += OnTextBoxTextChanged; 71_upDownEdit.LostFocus += OnTextBoxLostFocus; 72_upDownEdit.Resize += OnTextBoxResize; 77Controls.AddRange([_upDownButtons, _upDownEdit]); 145get => _upDownEdit.BackColor; 149_upDownEdit.BackColor = value; 222_upDownEdit.ContextMenuStrip = value; 281public override bool Focused => _upDownEdit.Focused; 288get => _upDownEdit.ForeColor; 292_upDownEdit.ForeColor = value; 403get => _upDownEdit.ReadOnly; 404set => _upDownEdit.ReadOnly = value; 414get => _upDownEdit.Text; 421_upDownEdit.Text = value; 445get => _upDownEdit.TextAlign; 450_upDownEdit.TextAlign = value; 454internal TextBox TextBox => _upDownEdit; 508if (!_upDownEdit.SupportsUiaProviders) 510_upDownEdit.ReleaseUiaProvider(_upDownEdit.HWNDInternal); 601Rectangle editBounds = _upDownEdit.Bounds; 661if (!Enabled && BorderStyle != BorderStyle.None && !_upDownEdit.ShouldSerializeBackColor()) 947if (_upDownEdit is not null) 983_upDownEdit?.Bounds = upDownEditBounds; 1061_upDownEdit?.Bounds = upDownEditBounds; 1211=> _upDownEdit.Select(start, length); 1301toolTip.SetToolTip(_upDownEdit, caption); 1313toolTip.SetToolTip(_upDownEdit, caption);