34 references to Paint
System.Windows.Forms (27)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (2)
1288add => base.Paint += value; 1289remove => base.Paint -= value;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (2)
547add => base.Paint += value; 548remove => base.Paint -= value;
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (2)
1224add => base.Paint += value; 1225remove => base.Paint -= value;
System\Windows\Forms\Controls\ListView\ListView.cs (2)
2144add => base.Paint += value; 2145remove => base.Paint -= value;
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (2)
1056add => base.Paint += value; 1057remove => base.Paint -= value;
System\Windows\Forms\Controls\ProgressBar\ProgressBar.cs (2)
554add => base.Paint += value; 555remove => base.Paint -= value;
System\Windows\Forms\Controls\TabControl\TabControl.cs (2)
916add => base.Paint += value; 917remove => base.Paint -= value;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (2)
1434add => base.Paint += value; 1435remove => base.Paint -= value;
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (2)
735control.Paint += HandlePaint; 780control.Paint -= HandlePaint;
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (2)
680add => base.Paint += value; 681remove => base.Paint -= value;
System\Windows\Forms\Controls\TreeView\TreeView.cs (2)
1456add => base.Paint += value; 1457remove => base.Paint -= value;
System\Windows\Forms\Panels\Panel.cs (1)
15[DefaultEvent(nameof(Paint))]
System\Windows\Forms\Rendering\PaintEventArgs.cs (1)
11/// Provides data for the <see cref="Control.Paint"/> event.
System\Windows\Forms\Rendering\PaintEventHandler.cs (1)
7/// Represents a method that will handle the <see cref="Control.Paint"/> event of a <see cref="Control"/> class.
System\Windows\Forms\Scrolling\ScrollBar.cs (2)
393add => base.Paint += value; 394remove => base.Paint -= value;
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\ToolStripCollectionEditor.ToolStripItemEditorForm.cs (1)
335_selectedItemName.Paint += OnSelectedItemName_Paint;
System\Windows\Forms\Design\ToolStripDesigner.cs (2)
843ToolStrip.OverflowButton.DropDown.Paint += OnOverFlowDropDownPaint; 1167ToolStrip.OverflowButton.DropDown.Paint -= OnOverFlowDropDownPaint;
System\Windows\Forms\Design\ToolStripMenuItemDesigner.cs (2)
1461MenuItem.DropDown.Paint += DropDownPaint; 2537MenuItem.DropDown.Paint -= DropDownPaint;
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHost.cs (2)
1384add { base.Paint += value; } 1385remove { base.Paint -= value; }