50 references to LostFocus
PresentationUI (2)
MS\Internal\Documents\RMPublishingDialog.cs (1)
531button.LostFocus += new EventHandler(OnIconButtonLeave);
MS\Internal\Documents\RMPublishingDialog.Designer.cs (1)
207this.textBoxUserName.LostFocus += new System.EventHandler(textBoxUserName_LostFocus);
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (1)
7725/// Raises the <see cref="LostFocus"/> event.
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (4)
212_dropDownButton.LostFocus += OnChildLostFocus; 253_dialogButton.LostFocus += OnChildLostFocus; 289_editTextBox.LostFocus += OnEditLostFocus; 323_listBox.LostFocus += OnChildLostFocus;
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (2)
725control.LostFocus += HandleLostFocus; 770control.LostFocus -= HandleLostFocus;
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (2)
59_upDownEdit.LostFocus += OnTextBoxLostFocus; 626/// Raises the <see cref="Control.LostFocus"/> event.
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionPanel.TextBoxPropertyLine.cs (1)
56_textBox.LostFocus += OnTextBoxLostFocus;
System.Windows.Forms.Tests (36)
System\Windows\Forms\ButtonBaseTests.cs (20)
6037control.LostFocus += handler; 6044control.LostFocus -= handler; 6072control.LostFocus += handler; 6082control.LostFocus -= handler; 7615control.LostFocus += (sender, e) => callCount++; 7646control.LostFocus += (sender, e) => callCount++; 7678control.LostFocus += (sender, e) => callCount++; 7717control.LostFocus += (sender, e) => callCount++; 7758control.LostFocus += (sender, e) => callCount++; 7803control.LostFocus += (sender, e) => callCount++; 7846control.LostFocus += (sender, e) => callCount++; 7895control.LostFocus += (sender, e) => callCount++; 8440control.LostFocus += (sender, e) => 8476control.LostFocus += (sender, e) => 8513control.LostFocus += (sender, e) => 8557control.LostFocus += (sender, e) => 8603control.LostFocus += (sender, e) => 8653control.LostFocus += (sender, e) => 8701control.LostFocus += (sender, e) => 8755control.LostFocus += (sender, e) =>
System\Windows\Forms\ControlTests.Handlers.cs (2)
3332control.LostFocus += handler; 3337control.LostFocus -= handler;
System\Windows\Forms\ControlTests.Methods.cs (8)
4211control.LostFocus += handler; 4212otherControl.LostFocus += otherHandler; 4222control.LostFocus -= handler; 4223otherControl.LostFocus -= otherHandler; 12435control.LostFocus += (sender, e) => callCount++; 12461control.LostFocus += (sender, e) => callCount++; 13079control.LostFocus += (sender, e) => 13110control.LostFocus += (sender, e) =>
System\Windows\Forms\ToolStripTests.cs (2)
5804control.LostFocus += handler; 5809control.LostFocus -= handler;
System\Windows\Forms\UpDownBaseTests.cs (4)
2488control.LostFocus += handler; 2494control.LostFocus -= handler; 2862control.LostFocus += (sender, e) => callCount++; 2888control.LostFocus += (sender, e) => callCount++;
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHost.cs (2)
1270add { base.LostFocus += value; } 1271remove { base.LostFocus -= value; }