20 references to DesignerTypeName
System (3)
compmod\system\componentmodel\TypeDescriptor.cs (3)
601designerType = tr.GetType(da.DesignerTypeName); 607designerType = Type.GetType(da.DesignerTypeName); 610Debug.Assert(designerType != null, "It may be okay for the designer not to load, but we failed to load designer for component of type '" + component.GetType().FullName + "' because designer of type '" + da.DesignerTypeName + "'");
System.Activities.Presentation (5)
Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\DesignerAttributeInfo.cs (1)
17return new List<object>() { Type.GetType(attribute.DesignerTypeName) };
System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemModelItemViewModel.cs (1)
279if (attribute != null && !string.IsNullOrEmpty(attribute.DesignerTypeName))
System.Activities.Presentation\System\Activities\Presentation\View\WorkflowViewService.cs (3)
146if (designerAttribute != null && !String.IsNullOrEmpty(designerAttribute.DesignerTypeName)) 148designerType = Type.GetType(designerAttribute.DesignerTypeName, throwOnFailure); 159designerType : Type.GetType(genericDesignerAttribute.DesignerTypeName, throwOnFailure));
System.Data (5)
cdf\src\NetFx40\Tools\Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\DesignerAttributeInfo.cs (1)
17return new List<object>() { Type.GetType(attribute.DesignerTypeName) };
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\TreeView\TreeViewItemModelItemViewModel.cs (1)
279if (attribute != null && !string.IsNullOrEmpty(attribute.DesignerTypeName))
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\WorkflowViewService.cs (3)
146if (designerAttribute != null && !String.IsNullOrEmpty(designerAttribute.DesignerTypeName)) 148designerType = Type.GetType(designerAttribute.DesignerTypeName, throwOnFailure); 159designerType : Type.GetType(genericDesignerAttribute.DesignerTypeName, throwOnFailure));
System.Workflow.ComponentModel (7)
AuthoringOM\Design\ActivityDesigner.cs (5)
1999int index = designerAttribute.DesignerTypeName.IndexOf(','); 2000string designerTypeName = (index >= 0) ? designerAttribute.DesignerTypeName.Substring(0, index) : designerAttribute.DesignerTypeName; 2005designerType = (typeResolutionService != null) ? typeResolutionService.GetType(designerAttribute.DesignerTypeName) : null; 2009designerType = Type.GetType(designerAttribute.DesignerTypeName);
AuthoringOM\Design\CustomActivityDesigner.cs (2)
73if (rootDesignerAttrib.DesignerTypeName == typeof(ActivityDesigner).AssemblyQualifiedName) 77TypeDescriptor.AddAttributes(rootActivity, new Attribute[] { new DesignerAttribute(designerAttrib.DesignerTypeName, typeof(IRootDesigner)) });