16 references to GotFocus
PresentationUI (2)
MS\Internal\Documents\RMPublishingDialog.cs (1)
528button.GotFocus += new EventHandler(OnIconButtonEnter);
MS\Internal\Documents\RMPublishingDialog.Designer.cs (1)
206this.textBoxUserName.GotFocus += new System.EventHandler(textBoxUserName_GotFocus);
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (2)
7642/// Raises the <see cref="GotFocus"/> event. 7655/// Raises the <see cref="GotFocus"/> event.
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (3)
223_dropDownButton.GotFocus += OnDropDownButtonGotFocus; 274_dialogButton.GotFocus += OnDropDownButtonGotFocus; 312_editTextBox.GotFocus += OnEditGotFocus;
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (2)
722control.GotFocus += HandleGotFocus; 767control.GotFocus -= HandleGotFocus;
System.Windows.Forms.Design (3)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (1)
30_button.GotFocus += OnButtonGotFocus;
System\Windows\Forms\Design\TabControlDesigner.cs (2)
150tabControl.GotFocus -= OnGotFocus; 215control.GotFocus += OnGotFocus;
WindowsFormsIntegration (4)
System\Windows\Integration\ElementHost.cs (2)
1194add { base.GotFocus += value; } 1195remove { base.GotFocus -= value; }
System\Windows\Integration\WindowsFormsHost.cs (2)
342oldChild?.GotFocus -= new EventHandler(this.OnChildGotFocus); 343this.Child?.GotFocus += new EventHandler(this.OnChildGotFocus);