7 writes to _text
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (7)
1414
_text
??= WindowText;
1424
_text
= Properties.GetValueOrDefault<string?>(s_cacheTextFieldProperty);
3412
_text
= value;
3874
_text
= value.Length == 0 ? null : value;
8221
_text
= Text;
8224
_text
= null;
12204
_text
= null;
9 references to _text
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (9)
1413
Properties.AddOrRemoveValue(s_cacheTextFieldProperty,
_text
);
1588
cp.Caption =
_text
;
3400
get => CacheTextInternal ?
_text
?? string.Empty : WindowText;
3856
return
_text
?? string.Empty;
8045
if (
_text
is not null &&
_text
.Length != 0)
8047
PInvoke.SetWindowText(this,
_text
);
8222
if (
_text
is not null &&
_text
.Length == 0)