2 types derived from DocumentDesigner
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\FormDocumentDesigner.cs (1)
19internal class FormDocumentDesigner : DocumentDesigner
System\Windows\Forms\Design\UserControlDocumentDesigner.cs (1)
14internal class UserControlDocumentDesigner : DocumentDesigner
13 references to DocumentDesigner
System.Design (1)
artifacts\obj\System.Design.Facade\Release\net9.0\System.Design.Forwards.cs (1)
89[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Windows.Forms.Design.DocumentDesigner))]
System.Windows.Forms.Design (12)
System\ComponentModel\Design\InheritanceService.cs (1)
294return DocumentDesigner.s_manager?.GetService<TypeDescriptionProviderService>()?.GetProvider(type);
System\Windows\Forms\Design\DesignerUtils.cs (1)
111/// Used when the user clicks and drags a toolbox item onto the <see cref="DocumentDesigner"/>
System\Windows\Forms\Design\DocumentDesigner.cs (5)
1255properties["TrayHeight"] = TypeDescriptor.CreateProperty(typeof(DocumentDesigner), "TrayHeight", typeof(int), 1261properties["TrayLargeIcon"] = TypeDescriptor.CreateProperty(typeof(DocumentDesigner), "TrayLargeIcon", typeof(bool), 1295properties[shadowProps[i]] = TypeDescriptor.CreateProperty(typeof(DocumentDesigner), prop, empty); 1302properties["AutoScaleDimensions"] = TypeDescriptor.CreateProperty(typeof(DocumentDesigner), prop, DesignerSerializationVisibilityAttribute.Visible); 1308properties["AutoScaleMode"] = TypeDescriptor.CreateProperty(typeof(DocumentDesigner), prop, DesignerSerializationVisibilityAttribute.Visible, BrowsableAttribute.Yes);
System\Windows\Forms\Design\DocumentDesigner.DocumentInheritanceService.cs (2)
19private readonly DocumentDesigner _designer; 24public DocumentInheritanceService(DocumentDesigner designer) => _designer = designer;
System\Windows\Forms\Design\ParentControlDesigner.cs (3)
1493DocumentDesigner parentDesigner = host.GetDesigner(host.RootComponent) as DocumentDesigner; 1676if (host?.GetDesigner(host.RootComponent) is DocumentDesigner parentDesigner)