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