2 overrides of WindowText
System.Windows.Forms (2)
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1094internal 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)
3139WindowText = value;
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (2)
2178WindowText = saved; 2246WindowText = oldText; // restore the window text
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1109base.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)
1131_text ??= WindowText; 3124get => CacheTextInternal ? _text ?? string.Empty : WindowText; 3590if (!WindowText.Equals(value))
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (4)
2172saved = WindowText; 2242string oldText = WindowText; 2244if (!string.IsNullOrEmpty(oldText) && string.IsNullOrEmpty(WindowText)) 2474Text = WindowText;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1096get => base.WindowText;
System\Windows\Forms\Form.cs (1)
2517get => base.WindowText;