7 writes to _text
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (7)
1130
_text
??= WindowText;
1140
_text
= Properties.GetValueOrDefault<string?>(s_cacheTextFieldProperty);
3135
_text
= value;
3597
_text
= value.Length == 0 ? null : value;
7464
_text
= Text;
7467
_text
= null;
11307
_text
= null;
9 references to _text
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (9)
1129
Properties.AddOrRemoveValue(s_cacheTextFieldProperty,
_text
);
1311
cp.Caption =
_text
;
3123
get => CacheTextInternal ?
_text
?? string.Empty : WindowText;
3579
return
_text
?? string.Empty;
7298
if (
_text
is not null &&
_text
.Length != 0)
7300
PInvoke.SetWindowText(this,
_text
);
7465
if (
_text
is not null &&
_text
.Length == 0)