2 overrides of WindowText
System.Windows.Forms (2)
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1106internal override string WindowText
System\Windows\Forms\Form.cs (1)
2593internal override string WindowText
9 writes to WindowText
System.Windows.Forms (5)
System\Windows\Forms\Control.cs (1)
3234WindowText = value;
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (2)
2192WindowText = saved; 2260WindowText = oldText; // restore the window text
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1121base.WindowText = value;
System\Windows\Forms\Form.cs (1)
2599base.WindowText = value;
System.Windows.Forms.Tests (4)
System\Windows\Forms\ControlTests.Properties.cs (4)
13779WindowText = value 13784control.WindowText = value; 13795control.WindowText = value; 13799control.WindowText = value;
13 references to WindowText
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (3)
1226_text ??= WindowText; 3219get => CacheTextInternal ? _text ?? string.Empty : WindowText; 3685if (!WindowText.Equals(value))
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (4)
2186saved = WindowText; 2256string oldText = WindowText; 2258if (!string.IsNullOrEmpty(oldText) && string.IsNullOrEmpty(WindowText)) 2485Text = WindowText;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1108get => base.WindowText;
System\Windows\Forms\Form.cs (1)
2595get => base.WindowText;
System.Windows.Forms.Tests (4)
System\Windows\Forms\ControlTests.Properties.cs (4)
13781Assert.Equal(value ?? string.Empty, control.WindowText); 13785Assert.Equal(value ?? string.Empty, control.WindowText); 13796Assert.Equal(value ?? string.Empty, control.WindowText); 13800Assert.Equal(value ?? string.Empty, control.WindowText);