7 writes to _text
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (7)
1131
_text
??= WindowText;
1141
_text
= Properties.GetValueOrDefault<string?>(s_cacheTextFieldProperty);
3136
_text
= value;
3598
_text
= value.Length == 0 ? null : value;
7425
_text
= Text;
7428
_text
= null;
11276
_text
= null;
9 references to _text
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (9)
1130
Properties.AddOrRemoveValue(s_cacheTextFieldProperty,
_text
);
1312
cp.Caption =
_text
;
3124
get => CacheTextInternal ?
_text
?? string.Empty : WindowText;
3580
return
_text
?? string.Empty;
7259
if (
_text
is not null &&
_text
.Length != 0)
7261
PInvoke.SetWindowText(this,
_text
);
7426
if (
_text
is not null &&
_text
.Length == 0)