3 implementations of NotifyDefault
System.Windows.Forms (2)
System\Windows\Forms\Controls\Buttons\Button.cs (1)
183public virtual void NotifyDefault(bool value)
System\Windows\Forms\Controls\Labels\LinkLabel.cs (1)
747void IButtonControl.NotifyDefault(bool value)
System.Windows.Forms.Tests (1)
System\Windows\Forms\ButtonBaseTests.cs (1)
9260public void NotifyDefault(bool value) => throw new NotImplementedException();
5 references to NotifyDefault
System.Windows.Forms (4)
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (2)
1305ibuttonControl.NotifyDefault(value.data.boolVal == VARIANT_BOOL.VARIANT_TRUE); 1663buttonControl.NotifyDefault(uiDead);
System\Windows\Forms\Form.cs (2)
5272existing?.NotifyDefault(false); 5275button?.NotifyDefault(true);
System.Windows.Forms.Tests (1)
System\Windows\Forms\FormTests.cs (1)
212mock.Setup(x => x.NotifyDefault(It.IsAny<bool>()));