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;
257
public override bool Focused =>
_upDownEdit
.Focused;
264
get =>
_upDownEdit
.ForeColor;
268
_upDownEdit
.ForeColor = value;
362
get =>
_upDownEdit
.ReadOnly;
363
set =>
_upDownEdit
.ReadOnly = value;
373
get =>
_upDownEdit
.Text;
380
_upDownEdit
.Text = value;
404
get =>
_upDownEdit
.TextAlign;
409
_upDownEdit
.TextAlign = value;
413
internal TextBox TextBox =>
_upDownEdit
;
461
if (!
_upDownEdit
.SupportsUiaProviders)
463
_upDownEdit
.ReleaseUiaProvider(
_upDownEdit
.HWNDInternal);
516
Rectangle editBounds =
_upDownEdit
.Bounds;
576
if (!Enabled && BorderStyle != BorderStyle.None && !
_upDownEdit
.ShouldSerializeBackColor())
845
if (
_upDownEdit
is not null)
880
_upDownEdit
?.Bounds = upDownEditBounds;
892
public void Select(int start, int length) =>
_upDownEdit
.Select(start, length);
982
toolTip.SetToolTip(
_upDownEdit
, caption);
994
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
);