1 implementation of CanReloadWithErrors
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerHost.cs (1)
1199
bool IDesignerLoaderHost2.
CanReloadWithErrors
{ get; set; }
4 writes to CanReloadWithErrors
System.Windows.Forms.Design.Tests (4)
System\ComponentModel\Design\DesignerHostTests.cs (4)
21
host.
CanReloadWithErrors
= value;
25
host.
CanReloadWithErrors
= value;
29
host.
CanReloadWithErrors
= !value;
65
host.
CanReloadWithErrors
= true;
10 references to CanReloadWithErrors
System.Windows.Forms.Design (2)
System\ComponentModel\Design\DesignerHost.cs (1)
1192
if (!value || ((IDesignerLoaderHost2)this).
CanReloadWithErrors
)
System\ComponentModel\Design\Serialization\BasicDesignerLoader.cs (1)
638
lh2?.
CanReloadWithErrors
= LoaderHost.RootComponent is not null;
System.Windows.Forms.Design.Tests (8)
System\ComponentModel\Design\DesignerHostTests.cs (3)
22
Assert.Equal(value, host.
CanReloadWithErrors
);
26
Assert.Equal(value, host.
CanReloadWithErrors
);
30
Assert.Equal(!value, host.
CanReloadWithErrors
);
System\ComponentModel\Design\DesignSurfaceTests.cs (5)
22
Assert.False(surface.Host.
CanReloadWithErrors
);
61
Assert.False(surface.Host.
CanReloadWithErrors
);
83
Assert.False(surface.Host.
CanReloadWithErrors
);
105
Assert.False(surface.Host.
CanReloadWithErrors
);
152
Assert.False(surface.Host.
CanReloadWithErrors
);