2 implementations of NotifyDefault
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Button.cs (1)
252public virtual void NotifyDefault(bool value) {
winforms\Managed\System\WinForms\LinkLabel.cs (1)
887void IButtonControl.NotifyDefault(bool value) {
4 references to NotifyDefault
System.Windows.Forms (4)
winforms\Managed\System\WinForms\Control.cs (2)
17541ibuttonControl.NotifyDefault((bool)obj); 18189((IButtonControl)control).NotifyDefault((bool)obj);
winforms\Managed\System\WinForms\Form.cs (2)
6014if (defaultButton != null) defaultButton.NotifyDefault(false); 6016if (button != null) button.NotifyDefault(true);