7 writes to _text
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (7)
1132
_text
??= WindowText;
1142
_text
= Properties.GetValueOrDefault<string?>(s_cacheTextFieldProperty);
3137
_text
= value;
3599
_text
= value.Length == 0 ? null : value;
7466
_text
= Text;
7469
_text
= null;
11309
_text
= null;
9 references to _text
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (9)
1131
Properties.AddOrRemoveValue(s_cacheTextFieldProperty,
_text
);
1313
cp.Caption =
_text
;
3125
get => CacheTextInternal ?
_text
?? string.Empty : WindowText;
3581
return
_text
?? string.Empty;
7300
if (
_text
is not null &&
_text
.Length != 0)
7302
PInvoke.SetWindowText(this,
_text
);
7467
if (
_text
is not null &&
_text
.Length == 0)