2 types derived from DocumentDesigner
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\FormDocumentDesigner.cs (1)
19
internal class FormDocumentDesigner :
DocumentDesigner
System\Windows\Forms\Design\UserControlDocumentDesigner.cs (1)
14
internal 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)
294
return
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)
1255
properties["TrayHeight"] = TypeDescriptor.CreateProperty(typeof(
DocumentDesigner
), "TrayHeight", typeof(int),
1261
properties["TrayLargeIcon"] = TypeDescriptor.CreateProperty(typeof(
DocumentDesigner
), "TrayLargeIcon", typeof(bool),
1295
properties[shadowProps[i]] = TypeDescriptor.CreateProperty(typeof(
DocumentDesigner
), prop, empty);
1302
properties["AutoScaleDimensions"] = TypeDescriptor.CreateProperty(typeof(
DocumentDesigner
), prop, DesignerSerializationVisibilityAttribute.Visible);
1308
properties["AutoScaleMode"] = TypeDescriptor.CreateProperty(typeof(
DocumentDesigner
), prop, DesignerSerializationVisibilityAttribute.Visible, BrowsableAttribute.Yes);
System\Windows\Forms\Design\DocumentDesigner.DocumentInheritanceService.cs (2)
19
private readonly
DocumentDesigner
_designer;
24
public DocumentInheritanceService(
DocumentDesigner
designer) => _designer = designer;
System\Windows\Forms\Design\ParentControlDesigner.cs (3)
1493
DocumentDesigner
parentDesigner = host.GetDesigner(host.RootComponent) as
DocumentDesigner
;
1676
if (host?.GetDesigner(host.RootComponent) is
DocumentDesigner
parentDesigner)