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