7 writes to _text
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (7)
1205
_text
??= WindowText;
1215
_text
= Properties.GetValueOrDefault<string?>(s_cacheTextFieldProperty);
3210
_text
= value;
3672
_text
= value.Length == 0 ? null : value;
7539
_text
= Text;
7542
_text
= null;
11404
_text
= null;
9 references to _text
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (9)
1204
Properties.AddOrRemoveValue(s_cacheTextFieldProperty,
_text
);
1386
cp.Caption =
_text
;
3198
get => CacheTextInternal ?
_text
?? string.Empty : WindowText;
3654
return
_text
?? string.Empty;
7370
if (
_text
is not null &&
_text
.Length != 0)
7372
PInvoke.SetWindowText(this,
_text
);
7540
if (
_text
is not null &&
_text
.Length == 0)