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; 405get => _upDownEdit.ReadOnly; 406set => _upDownEdit.ReadOnly = value; 416get => _upDownEdit.Text; 423_upDownEdit.Text = value; 447get => _upDownEdit.TextAlign; 452_upDownEdit.TextAlign = value; 456internal TextBox TextBox => _upDownEdit; 510if (!_upDownEdit.SupportsUiaProviders) 512_upDownEdit.ReleaseUiaProvider(_upDownEdit.HWNDInternal); 612Rectangle editBounds = _upDownEdit.Bounds; 672if (!Enabled && BorderStyle != BorderStyle.None && !_upDownEdit.ShouldSerializeBackColor()) 958if (_upDownEdit is not null) 994_upDownEdit?.Bounds = upDownEditBounds; 1072_upDownEdit?.Bounds = upDownEditBounds; 1224=> _upDownEdit.Select(start, length); 1314toolTip.SetToolTip(_upDownEdit, caption); 1326toolTip.SetToolTip(_upDownEdit, caption);