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