7 writes to _text
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (7)
1226
_text
??= WindowText;
1236
_text
= Properties.GetValueOrDefault<string?>(s_cacheTextFieldProperty);
3231
_text
= value;
3693
_text
= value.Length == 0 ? null : value;
7560
_text
= Text;
7563
_text
= null;
11425
_text
= null;
9 references to _text
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (9)
1225
Properties.AddOrRemoveValue(s_cacheTextFieldProperty,
_text
);
1407
cp.Caption =
_text
;
3219
get => CacheTextInternal ?
_text
?? string.Empty : WindowText;
3675
return
_text
?? string.Empty;
7391
if (
_text
is not null &&
_text
.Length != 0)
7393
PInvoke.SetWindowText(this,
_text
);
7561
if (
_text
is not null &&
_text
.Length == 0)