3 implementations of NotifyDefault
System.Windows.Forms (2)
System\Windows\Forms\Controls\Buttons\Button.cs (1)
183
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)
9260
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)
5272
existing?.
NotifyDefault
(false);
5275
button?.
NotifyDefault
(true);
System.Windows.Forms.Tests (1)
System\Windows\Forms\FormTests.cs (1)
212
mock.Setup(x => x.
NotifyDefault
(It.IsAny<bool>()));