2 implementations of IRootDesigner
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ComponentDocumentDesigner.cs (1)
14public class ComponentDocumentDesigner : ComponentDesigner, IRootDesigner, IToolboxUser, IOleDragClient,
System\Windows\Forms\Design\DocumentDesigner.cs (1)
22public partial class DocumentDesigner : ScrollableControlDesigner, IRootDesigner, IToolboxUser, IOleDragClient
17 references to IRootDesigner
netstandard (1)
netstandard.cs (1)
267[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.IRootDesigner))]
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
253[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.IRootDesigner))]
System.Windows.Forms (2)
System\Windows\Forms\Form.cs (1)
23[Designer($"System.Windows.Forms.Design.FormDocumentDesigner, {Assemblies.SystemDesign}", typeof(IRootDesigner))]
System\Windows\Forms\UserControl.cs (1)
15[Designer($"System.Windows.Forms.Design.UserControlDocumentDesigner, {Assemblies.SystemDesign}", typeof(IRootDesigner))]
System.Windows.Forms.Design (13)
System\ComponentModel\Design\DesignerHost.cs (3)
247designer = _surface!.CreateDesigner(component, true) as IRootDesigner ?? 1090IRootDesigner rootDesigner = (((IDesignerHost)this).GetDesigner(_rootComponent!) as IRootDesigner)
System\ComponentModel\Design\DesignSurface.cs (3)
156if (((IDesignerHost)_host).GetDesigner(rootComponent) is not IRootDesigner rootDesigner) 263? TypeDescriptor.CreateDesigner(component, typeof(IRootDesigner)) as IRootDesigner
System\ComponentModel\Design\Serialization\CodeDomDesignerLoader.cs (1)
165if (attributeBaseType is not null && attributeBaseType == typeof(IRootDesigner))
System\Windows\Forms\Design\ComponentDocumentDesigner.cs (2)
65ViewTechnology[] IRootDesigner.SupportedTechnologies => throw new NotImplementedException(); 83object IRootDesigner.GetView(ViewTechnology technology)
System\Windows\Forms\Design\ComponentTray.cs (1)
1683if (host.GetDesigner(host.RootComponent) is IRootDesigner rd)
System\Windows\Forms\Design\ControlDesigner.cs (1)
2187if (_host is not null && _host.RootComponent is not null && _host.GetDesigner(_host.RootComponent) is IRootDesigner rd)
System\Windows\Forms\Design\DocumentDesigner.cs (2)
1367ViewTechnology[] IRootDesigner.SupportedTechnologies 1379object IRootDesigner.GetView(ViewTechnology technology) =>