44 references to GotFocus
PresentationUI (2)
MS\Internal\Documents\RMPublishingDialog.cs (1)
529button.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)
7551/// Raises the <see cref="GotFocus"/> event. 7564/// Raises the <see cref="GotFocus"/> event.
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (3)
211_dropDownButton.GotFocus += OnDropDownButtonGotFocus; 252_dialogButton.GotFocus += OnDropDownButtonGotFocus; 288_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)
161tabControl.GotFocus -= OnGotFocus; 232control.GotFocus += OnGotFocus;
System.Windows.Forms.Tests (28)
System\Windows\Forms\ButtonBaseTests.cs (4)
5321control.GotFocus += handler; 5327control.GotFocus -= handler; 5354control.GotFocus += handler; 5363control.GotFocus -= handler;
System\Windows\Forms\ControlTests.Handlers.cs (2)
2100control.GotFocus += handler; 2106control.GotFocus -= handler;
System\Windows\Forms\ControlTests.Methods.cs (12)
4171control.GotFocus += handler; 4172otherControl.GotFocus += otherHandler; 4182control.GotFocus -= handler; 4183otherControl.GotFocus -= otherHandler; 13999control.GotFocus += (sender, e) => 14030control.GotFocus += (sender, e) => 14068control.GotFocus += (sender, e) => 14124control.GotFocus += (sender, e) => 14184control.GotFocus += (sender, e) => 14228control.GotFocus += (sender, e) => 14272control.GotFocus += (sender, e) => 14316control.GotFocus += (sender, e) =>
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (4)
1150control.GotFocus += handler; 1157control.GotFocus -= handler; 1185control.GotFocus += handler; 1194control.GotFocus -= handler;
System\Windows\Forms\ListBoxTests.cs (4)
5589control.GotFocus += handler; 5595control.GotFocus -= handler; 5622control.GotFocus += handler; 5631control.GotFocus -= handler;
System\Windows\Forms\UpDownBaseTests.cs (2)
2966control.GotFocus += (sender, e) => 2996control.GotFocus += (sender, e) =>
WindowsFormsIntegration (4)
System\Windows\Integration\ElementHost.cs (2)
1200add { base.GotFocus += value; } 1201remove { base.GotFocus -= value; }
System\Windows\Integration\WindowsFormsHost.cs (2)
345oldChild.GotFocus -= new EventHandler(this.OnChildGotFocus); 350this.Child.GotFocus += new EventHandler(this.OnChildGotFocus);