50 references to LostFocus
PresentationUI (2)
MS\Internal\Documents\RMPublishingDialog.cs (1)
539button.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)
7686/// 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)
6035control.LostFocus += handler; 6042control.LostFocus -= handler; 6070control.LostFocus += handler; 6080control.LostFocus -= handler; 7613control.LostFocus += (sender, e) => callCount++; 7644control.LostFocus += (sender, e) => callCount++; 7676control.LostFocus += (sender, e) => callCount++; 7715control.LostFocus += (sender, e) => callCount++; 7756control.LostFocus += (sender, e) => callCount++; 7801control.LostFocus += (sender, e) => callCount++; 7844control.LostFocus += (sender, e) => callCount++; 7893control.LostFocus += (sender, e) => callCount++; 8438control.LostFocus += (sender, e) => 8474control.LostFocus += (sender, e) => 8511control.LostFocus += (sender, e) => 8555control.LostFocus += (sender, e) => 8601control.LostFocus += (sender, e) => 8651control.LostFocus += (sender, e) => 8699control.LostFocus += (sender, e) => 8753control.LostFocus += (sender, e) =>
System\Windows\Forms\ControlTests.Handlers.cs (2)
3330control.LostFocus += handler; 3335control.LostFocus -= handler;
System\Windows\Forms\ControlTests.Methods.cs (8)
4242control.LostFocus += handler; 4243otherControl.LostFocus += otherHandler; 4253control.LostFocus -= handler; 4254otherControl.LostFocus -= otherHandler; 12466control.LostFocus += (sender, e) => callCount++; 12492control.LostFocus += (sender, e) => callCount++; 13110control.LostFocus += (sender, e) => 13141control.LostFocus += (sender, e) =>
System\Windows\Forms\ToolStripTests.cs (2)
5802control.LostFocus += handler; 5807control.LostFocus -= handler;
System\Windows\Forms\UpDownBaseTests.cs (4)
2486control.LostFocus += handler; 2492control.LostFocus -= handler; 2860control.LostFocus += (sender, e) => callCount++; 2886control.LostFocus += (sender, e) => callCount++;
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHost.cs (2)
1279add { base.LostFocus += value; } 1280remove { base.LostFocus -= value; }