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