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;
65
Controls.AddRange([_upDownButtons,
_upDownEdit
]);
130
get =>
_upDownEdit
.BackColor;
134
_upDownEdit
.BackColor = value;
207
_upDownEdit
.ContextMenuStrip = value;
255
public override bool Focused =>
_upDownEdit
.Focused;
262
get =>
_upDownEdit
.ForeColor;
266
_upDownEdit
.ForeColor = value;
360
get =>
_upDownEdit
.ReadOnly;
361
set =>
_upDownEdit
.ReadOnly = value;
371
get =>
_upDownEdit
.Text;
378
_upDownEdit
.Text = value;
402
get =>
_upDownEdit
.TextAlign;
407
_upDownEdit
.TextAlign = value;
411
internal TextBox TextBox =>
_upDownEdit
;
459
if (!
_upDownEdit
.SupportsUiaProviders)
461
_upDownEdit
.ReleaseUiaProvider(
_upDownEdit
.HWNDInternal);
514
Rectangle editBounds =
_upDownEdit
.Bounds;
574
if (!Enabled && BorderStyle != BorderStyle.None && !
_upDownEdit
.ShouldSerializeBackColor())
843
if (
_upDownEdit
is not null)
878
_upDownEdit
?.Bounds = upDownEditBounds;
890
public void Select(int start, int length) =>
_upDownEdit
.Select(start, length);
980
toolTip.SetToolTip(
_upDownEdit
, caption);
992
toolTip.SetToolTip(
_upDownEdit
, caption);
System.Windows.Forms.Tests (3)
System\Windows\Forms\UpDownBaseTests.cs (3)
3023
string actualEditToolTipText = toolTip.GetToolTip(upDownBase.
_upDownEdit
);
3032
actualEditToolTipText = toolTip.GetToolTip(upDownBase.
_upDownEdit
);
3039
actualEditToolTipText = toolTip.GetToolTip(upDownBase.
_upDownEdit
);