1 implementation of EndLoad
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerHost.cs (1)
1051void IDesignerLoaderHost.EndLoad(string? rootClassName, bool successful, ICollection? errorCollection)
8 references to EndLoad
System.Windows.Forms.Design (3)
System\ComponentModel\Design\DesignerHost.cs (1)
356((IDesignerLoaderHost)this).EndLoad(string.Empty, successful: false, new object[] { e });
System\ComponentModel\Design\DesignSurface.cs (1)
552loaderHost.EndLoad(_type.FullName!, true, null);
System\ComponentModel\Design\Serialization\BasicDesignerLoader.cs (1)
688LoaderHost.EndLoad(_baseComponentClassName!, successful, errors);
System.Windows.Forms.Design.Tests (4)
System\ComponentModel\Design\DesignerHostTests.cs (3)
117host.EndLoad(null, true, null); 1351host.EndLoad(oldRootComponentClassName, true, null); 2223host.EndLoad(baseClassName, successful, errorCollection);
System\ComponentModel\Design\DesignSurfaceTests.cs (1)
380host.EndLoad("BaseClassName", false, errorCollection);
System.Windows.Forms.UI.IntegrationTests (1)
DesignBehaviorsTests.cs (1)
310LoaderHost.EndLoad(nameof(Form), true, errors);