Base:
property
WindowText
System.Windows.Forms.Control.WindowText
1 write to WindowText
System.Windows.Forms (1)
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
2667WindowText = text; // this calls Win32::SetWindowText directly, no OnTextChanged raised.
7 references to WindowText
System.Windows.Forms (7)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
2386string oldText = WindowText;
System\Windows\Forms\Controls\TextBox\MaskedTextBox.MaskedTextBoxAccessibleObject.cs (1)
26=> this.TryGetOwnerAs(out MaskedTextBox? owner) ? owner.WindowText : string.Empty;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (5)
895string t = WindowText; 1104if (!WindowText.Equals(value)) 1631if (string.IsNullOrEmpty(WindowText)) 1662textDocument.Value->Range(WindowText.Length - 1, WindowText.Length - 1, windowTextRange).ThrowOnFailure();