125 references to TextChanged
System.Windows.Forms (46)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (2)
3996add => base.TextChanged += value; 3997remove => base.TextChanged -= value;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (2)
844add => base.TextChanged += value; 845remove => base.TextChanged -= value;
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (2)
1103add => base.TextChanged += value; 1104remove => base.TextChanged -= value;
System\Windows\Forms\Controls\ListView\ListView.cs (2)
1632add => base.TextChanged += value; 1633remove => base.TextChanged -= value;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (2)
845add => base.TextChanged += value; 846remove => base.TextChanged -= value;
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (2)
912add => base.TextChanged += value; 913remove => base.TextChanged -= value;
System\Windows\Forms\Controls\ProgressBar\ProgressBar.cs (2)
458add => base.TextChanged += value; 459remove => base.TextChanged -= value;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
291_editTextBox.TextChanged += OnEditChange;
System\Windows\Forms\Controls\Splitter\Splitter.cs (2)
457add => base.TextChanged += value; 458remove => base.TextChanged -= value;
System\Windows\Forms\Controls\TabControl\TabControl.cs (2)
833add => base.TextChanged += value; 834remove => base.TextChanged -= value;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
21[DefaultEvent(nameof(TextChanged))]
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (2)
740control.TextChanged += HandleTextChanged; 785control.TextChanged -= HandleTextChanged;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (2)
771add => base.TextChanged += value; 772remove => base.TextChanged -= value;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (2)
351add => base.TextChanged += value; 352remove => base.TextChanged -= value;
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (2)
519add => base.TextChanged += value; 520remove => base.TextChanged -= value;
System\Windows\Forms\Controls\TreeView\TreeView.cs (2)
1286add => base.TextChanged += value; 1287remove => base.TextChanged -= value;
System\Windows\Forms\Controls\UpDown\NumericUpDown.cs (2)
269add => base.TextChanged += value; 270remove => base.TextChanged -= value;
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
58_upDownEdit.TextChanged += OnTextBoxTextChanged;
System\Windows\Forms\Layout\Containers\SplitContainer.cs (2)
912add => base.TextChanged += value; 913remove => base.TextChanged -= value;
System\Windows\Forms\Panels\Panel.cs (2)
208add => base.TextChanged += value; 209remove => base.TextChanged -= value;
System\Windows\Forms\Printing\PrintControllerWithStatusDialog.StatusDialog.cs (1)
49_cancellingTextBox.TextChanged += OnCancellingTextBoxTextChanged;
System\Windows\Forms\Printing\PrintPreviewControl.cs (2)
280add => base.TextChanged += value; 281remove => base.TextChanged -= value;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (2)
614add => base.TextChanged += value; 615remove => base.TextChanged -= value;
System\Windows\Forms\Scrolling\ScrollBar.cs (2)
342add => base.TextChanged += value; 343remove => base.TextChanged -= value;
System\Windows\Forms\UserControl.cs (2)
214add => base.TextChanged += value; 215remove => base.TextChanged -= value;
System.Windows.Forms.Design (8)
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (1)
54_textBox.TextChanged += OnTextBoxTextChanged;
System\Windows\Forms\Design\FormatControl.cs (5)
76nullValueTextBox.TextChanged -= nullValueTextBox_TextChanged; 78nullValueTextBox.TextChanged += nullValueTextBox_TextChanged; 228_customStringTextBox.TextChanged -= customStringTextBox_TextChanged; 239_customStringTextBox.TextChanged += customStringTextBox_TextChanged; 315_customStringTextBox.TextChanged += customStringTextBox_TextChanged;
System\Windows\Forms\Design\FormatControl.Designer.cs (1)
130nullValueTextBox.TextChanged += this.nullValueTextBox_TextChanged;
System\Windows\Forms\Design\MaskDesignerDialog.cs (1)
95_txtBoxMask.TextChanged += txtBoxMask_TextChanged;
System.Windows.Forms.Tests (69)
System\Windows\Forms\ButtonBaseTests.cs (10)
3236control.TextChanged += handler; 3254control.TextChanged -= handler; 7162control.TextChanged += handler; 7169control.TextChanged -= handler; 7218control.TextChanged += handler; 7227control.TextChanged -= handler; 7266control.TextChanged += handler; 7276control.TextChanged -= handler; 7328control.TextChanged += handler; 7340control.TextChanged -= handler;
System\Windows\Forms\ButtonTests.cs (10)
971control.TextChanged += handler; 989control.TextChanged -= handler; 2896control.TextChanged += handler; 2903control.TextChanged -= handler; 2952control.TextChanged += handler; 2961control.TextChanged -= handler; 3000control.TextChanged += handler; 3010control.TextChanged -= handler; 3062control.TextChanged += handler; 3074control.TextChanged -= handler;
System\Windows\Forms\ControlTests.Handlers.cs (2)
5471control.TextChanged += handler; 5476control.TextChanged -= handler;
System\Windows\Forms\ControlTests.Properties.cs (2)
12016control.TextChanged += handler; 12034control.TextChanged -= handler;
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (10)
461control.TextChanged += handler; 479control.TextChanged -= handler; 504control.TextChanged += handler; 534control.TextChanged -= handler; 1366control.TextChanged += handler; 1373control.TextChanged -= handler; 1396control.TextChanged += handler; 1404control.TextChanged -= handler; 1430control.TextChanged += handler; 1438control.TextChanged -= handler;
System\Windows\Forms\DomainUpDownTests.cs (4)
378_control.TextChanged += textChangedHandler; 406_control.TextChanged -= textChangedHandler; 570_control.TextChanged += textChangedHandler; 598_control.TextChanged -= textChangedHandler;
System\Windows\Forms\GroupBoxTests.cs (2)
1161control.TextChanged += handler; 1179control.TextChanged -= handler;
System\Windows\Forms\RichTextBoxTests.cs (13)
2784control.TextChanged += handler; 2802control.TextChanged -= handler; 2827control.TextChanged += handler; 2857control.TextChanged -= handler; 7507control.TextChanged += handler; 7525control.TextChanged -= handler; 7550control.TextChanged += handler; 7580control.TextChanged -= handler; 9939control.TextChanged += (sender, e) => 9981control.TextChanged += (sender, e) => 10037control.TextChanged += (sender, e) => 10503control.TextChanged += (sender, e) => textChangedCallCount++; 10532control.TextChanged += (sender, e) => textChangedCallCount++;
System\Windows\Forms\UpDownBaseTests.cs (4)
1349control.TextChanged += handler; 1367control.TextChanged -= handler; 2579control.TextChanged += handler; 2587control.TextChanged -= handler;
TextBoxBaseTests.cs (10)
3486control.TextChanged += handler; 3504control.TextChanged -= handler; 3529control.TextChanged += handler; 3559control.TextChanged -= handler; 5790control.TextChanged += handler; 5796control.TextChanged -= handler; 7538control.TextChanged += (sender, e) => 7574control.TextChanged += (sender, e) => 7618control.TextChanged += (sender, e) => textChangedCallCount++; 7653control.TextChanged += (sender, e) => textChangedCallCount++;
TextBoxTests.cs (2)
356tb.TextChanged += handler; 359tb.TextChanged -= handler;
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHost.cs (2)
1460add { base.TextChanged += value; } 1461remove { base.TextChanged -= value; }