7 writes to _text
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (7)
1405
_text
??= WindowText;
1415
_text
= Properties.GetValueOrDefault<string?>(s_cacheTextFieldProperty);
3403
_text
= value;
3865
_text
= value.Length == 0 ? null : value;
8163
_text
= Text;
8166
_text
= null;
12146
_text
= null;
9 references to _text
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (9)
1404
Properties.AddOrRemoveValue(s_cacheTextFieldProperty,
_text
);
1579
cp.Caption =
_text
;
3391
get => CacheTextInternal ?
_text
?? string.Empty : WindowText;
3847
return
_text
?? string.Empty;
7987
if (
_text
is not null &&
_text
.Length != 0)
7989
PInvoke.SetWindowText(this,
_text
);
8164
if (
_text
is not null &&
_text
.Length == 0)