10 references to ToolboxItemType
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxItemWrapper.cs (1)
228Activator.CreateInstance(toolboxItemAttributes[0].ToolboxItemType) as ToolboxItem;
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxItemWrapper.cs (1)
228Activator.CreateInstance(toolboxItemAttributes[0].ToolboxItemType) as ToolboxItem;
System.Workflow.ComponentModel (8)
AuthoringOM\Design\ActivityDesigner.cs (1)
2502if (toolBoxItemAttribute != null && typeof(System.Workflow.ComponentModel.Design.ActivityToolboxItem).IsAssignableFrom(toolBoxItemAttribute.ToolboxItemType))
AuthoringOM\Design\CustomActivityDesigner.cs (2)
162if (toolboxItemAttrib != null && toolboxItemAttrib.ToolboxItemType != null) 164ToolboxItem item = Activator.CreateInstance(toolboxItemAttrib.ToolboxItemType, new object[] { rootActivity.GetType() }) as ToolboxItem;
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (3)
1009if (toolboxItemAttrib != null && toolboxItemAttrib.ToolboxItemType != null && typeof(ActivityToolboxItem).IsAssignableFrom(toolboxItemAttrib.ToolboxItemType)) 1011ActivityToolboxItem item = Activator.CreateInstance(toolboxItemAttrib.ToolboxItemType, new object[] { activityType }) as ActivityToolboxItem;
AuthoringOM\Design\WinOEToolBoxItem.cs (2)
125if (toolboxItemAttrib != null && toolboxItemAttrib.ToolboxItemType != null) 129ToolboxItem item = Activator.CreateInstance(toolboxItemAttrib.ToolboxItemType, new object[] { activityType }) as ToolboxItem;