2 overrides of WindowText
System.Windows.Forms (2)
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1372internal override string WindowText
System\Windows\Forms\Form.cs (1)
2585internal override string WindowText
5 writes to WindowText
System.Windows.Forms (5)
System\Windows\Forms\Control.cs (1)
3406WindowText = value;
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (2)
2248WindowText = saved; 2316WindowText = oldText; // restore the window text
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1389base.WindowText = value;
System\Windows\Forms\Form.cs (1)
2591base.WindowText = value;
9 references to WindowText
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (3)
1405_text ??= WindowText; 3391get => CacheTextInternal ? _text ?? string.Empty : WindowText; 3857if (!WindowText.Equals(value))
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (4)
2242saved = WindowText; 2312string oldText = WindowText; 2314if (!string.IsNullOrEmpty(oldText) && string.IsNullOrEmpty(WindowText)) 2565Text = WindowText;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1374get => base.WindowText;
System\Windows\Forms\Form.cs (1)
2587get => base.WindowText;