2 overrides of WindowText
System.Windows.Forms (2)
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1086internal override string WindowText
System\Windows\Forms\Form.cs (1)
2515internal override string WindowText
5 writes to WindowText
System.Windows.Forms (5)
System\Windows\Forms\Control.cs (1)
3140WindowText = value;
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (2)
2179WindowText = saved; 2247WindowText = oldText; // restore the window text
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1101base.WindowText = value;
System\Windows\Forms\Form.cs (1)
2521base.WindowText = value;
9 references to WindowText
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (3)
1132_text ??= WindowText; 3125get => CacheTextInternal ? _text ?? string.Empty : WindowText; 3591if (!WindowText.Equals(value))
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (4)
2173saved = WindowText; 2243string oldText = WindowText; 2245if (!string.IsNullOrEmpty(oldText) && string.IsNullOrEmpty(WindowText)) 2475Text = WindowText;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1088get => base.WindowText;
System\Windows\Forms\Form.cs (1)
2517get => base.WindowText;