1 implementation of CanReloadWithErrors
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerHost.cs (1)
1202bool IDesignerLoaderHost2.CanReloadWithErrors { get; set; }
5 writes to CanReloadWithErrors
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\BasicDesignerLoader.cs (1)
640lh2.CanReloadWithErrors = LoaderHost.RootComponent is not null;
System.Windows.Forms.Design.Tests (4)
System\ComponentModel\Design\DesignerHostTests.cs (4)
21host.CanReloadWithErrors = value; 25host.CanReloadWithErrors = value; 29host.CanReloadWithErrors = !value; 65host.CanReloadWithErrors = true;
9 references to CanReloadWithErrors
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerHost.cs (1)
1195if (!value || ((IDesignerLoaderHost2)this).CanReloadWithErrors)
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);