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)
19host.CanReloadWithErrors = value; 23host.CanReloadWithErrors = value; 27host.CanReloadWithErrors = !value; 63host.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)
20Assert.Equal(value, host.CanReloadWithErrors); 24Assert.Equal(value, host.CanReloadWithErrors); 28Assert.Equal(!value, host.CanReloadWithErrors);
System\ComponentModel\Design\DesignSurfaceTests.cs (5)
20Assert.False(surface.Host.CanReloadWithErrors); 59Assert.False(surface.Host.CanReloadWithErrors); 81Assert.False(surface.Host.CanReloadWithErrors); 103Assert.False(surface.Host.CanReloadWithErrors); 150Assert.False(surface.Host.CanReloadWithErrors);