1 interface inheriting from IRootDesigner
System.Workflow.ComponentModel (1)
AuthoringOM\Design\DesignerInterfaces.cs (1)
523public interface IWorkflowRootDesigner : IRootDesigner
26 references to IRootDesigner
System (2)
compmod\system\componentmodel\IComponent.cs (1)
35Designer("System.Windows.Forms.Design.ComponentDocumentDesigner, " + AssemblyRef.SystemDesign, typeof(IRootDesigner)),
compmod\system\componentmodel\MarshalByValueComponent.cs (1)
21Designer("System.Windows.Forms.Design.ComponentDocumentDesigner, " + AssemblyRef.SystemDesign, typeof(IRootDesigner)),
System.Web (3)
UI\MasterPage.cs (1)
51Designer("Microsoft.VisualStudio.Web.WebForms.MasterPageWebFormDesigner, " + AssemblyRef.MicrosoftVisualStudioWeb, typeof(IRootDesigner)),
UI\Page.cs (1)
187Designer("Microsoft.VisualStudio.Web.WebForms.WebFormDesigner, " + AssemblyRef.MicrosoftVisualStudioWeb, typeof(IRootDesigner)),
UI\UserControl.cs (1)
81Designer("Microsoft.VisualStudio.Web.WebForms.WebFormDesigner, " + AssemblyRef.MicrosoftVisualStudioWeb, typeof(IRootDesigner)),
System.Web.Mobile (2)
UI\MobileControls\MobilePage.cs (1)
38Designer("Microsoft.VisualStudio.Web.WebForms.MobileWebFormDesigner, " + AssemblyRef.MicrosoftVisualStudioWeb, typeof(IRootDesigner)),
UI\MobileControls\MobileUserControl.cs (1)
17Designer("Microsoft.VisualStudio.Web.WebForms.MobileWebFormDesigner, " + AssemblyRef.MicrosoftVisualStudioWeb, typeof(IRootDesigner)),
System.Windows.Forms (2)
winforms\Managed\System\WinForms\Form.cs (1)
48Designer("System.Windows.Forms.Design.FormDocumentDesigner, " + AssemblyRef.SystemDesign, typeof(IRootDesigner)),
winforms\Managed\System\WinForms\UserControl.cs (1)
33Designer("System.Windows.Forms.Design.UserControlDocumentDesigner, " + AssemblyRef.SystemDesign, typeof(IRootDesigner)),
System.Workflow.Activities (2)
Schedule.cs (1)
23[Designer(typeof(SequentialWorkflowDesigner), typeof(IRootDesigner))]
StateMachineWorkflow.cs (1)
18[Designer(typeof(StateMachineWorkflowDesigner), typeof(IRootDesigner))]
System.Workflow.ComponentModel (15)
AuthoringOM\Activity.cs (1)
138[Designer(typeof(ActivityDesigner), typeof(IRootDesigner))]
AuthoringOM\Design\ActivityDesigner.cs (5)
2054if (parentDesigner == null && containedDesigner is IRootDesigner) 2253WorkflowView workflowView = ((IRootDesigner)this).GetView(ViewTechnology.Default) as WorkflowView; 2260WorkflowView workflowView = ((IRootDesigner)this).GetView(ViewTechnology.Default) as WorkflowView; 2373ViewTechnology[] IRootDesigner.SupportedTechnologies 2381object IRootDesigner.GetView(ViewTechnology technology)
AuthoringOM\Design\CommandSet.cs (2)
560IRootDesigner rootDesigner = ActivityDesigner.GetDesigner(host.RootComponent as Activity) as IRootDesigner;
AuthoringOM\Design\CustomActivityDesigner.cs (2)
72DesignerAttribute rootDesignerAttrib = GetDesignerAttribute(rootActivity, typeof(IRootDesigner)); 77TypeDescriptor.AddAttributes(rootActivity, new Attribute[] { new DesignerAttribute(designerAttrib.DesignerTypeName, typeof(IRootDesigner)) });
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (3)
724Type designerBaseType = (type.FullName.Equals(DesignerHelpers.SequentialWorkflowTypeRef, StringComparison.OrdinalIgnoreCase)) ? typeof(IRootDesigner) : typeof(IDesigner); 836Type designerBaseType = (activityType.FullName.Equals(DesignerHelpers.SequentialWorkflowTypeRef, StringComparison.OrdinalIgnoreCase)) ? typeof(IRootDesigner) : typeof(IDesigner); 883Type designerBaseType = (activityType.FullName.Equals(DesignerHelpers.SequentialWorkflowTypeRef, StringComparison.OrdinalIgnoreCase)) ? typeof(IRootDesigner) : typeof(IDesigner);
AuthoringOM\Design\DocumentOutline.cs (2)
141IRootDesigner rootDesigner = ActivityDesigner.GetSafeRootDesigner(this.serviceProvider) as IRootDesigner;