44 references to GotFocus
PresentationUI (2)
MS\Internal\Documents\RMPublishingDialog.cs (1)
537button.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)
7512/// Raises the <see cref="GotFocus"/> event. 7525/// 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)
5319control.GotFocus += handler; 5325control.GotFocus -= handler; 5352control.GotFocus += handler; 5361control.GotFocus -= handler;
System\Windows\Forms\ControlTests.Handlers.cs (2)
2098control.GotFocus += handler; 2104control.GotFocus -= handler;
System\Windows\Forms\ControlTests.Methods.cs (12)
4202control.GotFocus += handler; 4203otherControl.GotFocus += otherHandler; 4213control.GotFocus -= handler; 4214otherControl.GotFocus -= otherHandler; 14030control.GotFocus += (sender, e) => 14061control.GotFocus += (sender, e) => 14099control.GotFocus += (sender, e) => 14155control.GotFocus += (sender, e) => 14215control.GotFocus += (sender, e) => 14259control.GotFocus += (sender, e) => 14303control.GotFocus += (sender, e) => 14347control.GotFocus += (sender, e) =>
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (4)
1148control.GotFocus += handler; 1155control.GotFocus -= handler; 1183control.GotFocus += handler; 1192control.GotFocus -= handler;
System\Windows\Forms\ListBoxTests.cs (4)
5587control.GotFocus += handler; 5593control.GotFocus -= handler; 5620control.GotFocus += handler; 5629control.GotFocus -= handler;
System\Windows\Forms\UpDownBaseTests.cs (2)
2964control.GotFocus += (sender, e) => 2994control.GotFocus += (sender, e) =>
WindowsFormsIntegration (4)
System\Windows\Integration\ElementHost.cs (2)
1209add { base.GotFocus += value; } 1210remove { base.GotFocus -= value; }
System\Windows\Integration\WindowsFormsHost.cs (2)
353oldChild.GotFocus -= new EventHandler(this.OnChildGotFocus); 358this.Child.GotFocus += new EventHandler(this.OnChildGotFocus);