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