1 interface inheriting from IDesignerHost
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\Serialization\IDesignerLoaderHost.cs (1)
16public interface IDesignerLoaderHost : IDesignerHost
32 references to IDesignerHost
netstandard (1)
netstandard.cs (1)
255[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.IDesignerHost))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
241[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.IDesignerHost))]
System.ComponentModel.TypeConverter (30)
System\ComponentModel\AmbientValueAttribute.cs (3)
32Debug.Assert(IDesignerHost.IsSupported, "Runtime instantiation of this attribute is not allowed with trimming."); 33if (!IDesignerHost.IsSupported) 145if (!IDesignerHost.IsSupported)
System\ComponentModel\Design\ActiveDesignerEventArgs.cs (4)
16public ActiveDesignerEventArgs(IDesignerHost? oldDesigner, IDesignerHost? newDesigner) 25public IDesignerHost? OldDesigner { get; } 30public IDesignerHost? NewDesigner { get; }
System\ComponentModel\Design\DesignerCollection.cs (5)
17/// that stores an array with a pointer to each <see cref='System.ComponentModel.Design.IDesignerHost'/> 20public DesignerCollection(IDesignerHost[]? designers) 34/// that stores an array with a pointer to each <see cref='System.ComponentModel.Design.IDesignerHost'/> 50public virtual IDesignerHost? this[int index] => (IDesignerHost?)_designers[index];
System\ComponentModel\Design\DesignerEventArgs.cs (2)
16public DesignerEventArgs(IDesignerHost? host) 24public IDesignerHost? Designer { get; }
System\ComponentModel\Design\IComponentDiscoveryService.cs (1)
19ICollection GetComponentTypes(IDesignerHost? designerHost, Type? baseType);
System\ComponentModel\Design\IDesignerEventService.cs (1)
14IDesignerHost? ActiveDesigner { get; }
System\ComponentModel\Design\IDesignerHost.cs (7)
52/// Adds an event handler for the <see cref='System.ComponentModel.Design.IDesignerHost.Activated'/> event. 57/// Adds an event handler for the <see cref='System.ComponentModel.Design.IDesignerHost.Deactivated'/> event. 62/// Adds an event handler for the <see cref='System.ComponentModel.Design.IDesignerHost.LoadComplete'/> event. 67/// Adds an event handler for the <see cref='System.ComponentModel.Design.IDesignerHost.TransactionClosed'/> event. 72/// Adds an event handler for the <see cref='System.ComponentModel.Design.IDesignerHost.TransactionClosing'/> event. 77/// Adds an event handler for the <see cref='System.ComponentModel.Design.IDesignerHost.TransactionOpened'/> event. 82/// Adds an event handler for the <see cref='System.ComponentModel.Design.IDesignerHost.TransactionOpening'/> event.
System\ComponentModel\ToolboxItemAttribute.cs (1)
45if (!IDesignerHost.IsSupported)
System\ComponentModel\TypeDescriptor.cs (3)
647IDesignerHost? host = site.GetService(typeof(IDesignerHost)) as IDesignerHost;
System\Timers\Timer.cs (3)
222IDesignerHost? host = (IDesignerHost?)GetService(typeof(IDesignerHost));