12 references to GetClassName
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
1213return TypeDescriptor.GetClassName(this);
System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (1)
336return TypeDescriptor.GetClassName(this);
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemDictionaryImpl.cs (1)
1213return TypeDescriptor.GetClassName(this);
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Model\ModelItemImpl.cs (1)
336return TypeDescriptor.GetClassName(this);
System.Windows.Forms (6)
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
2778OnComComponentNameChanged(new ComponentRenameEventArgs(obj, null, TypeDescriptor.GetClassName(obj)));
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (2)
140typeName = TypeDescriptor.GetClassName(owner); 161typeName = TypeDescriptor.GetClassName(owner);
winforms\Managed\System\WinForms\PropertyGridInternal\SingleSelectRootGridEntry.cs (2)
50this.objValueClassName = TypeDescriptor.GetClassName(this.objValue); 230objValueClassName = TypeDescriptor.GetClassName(objValue);
winforms\Managed\System\WinForms\PropertyManager.cs (1)
87return TypeDescriptor.GetClassName(dataSource) + "." + propName;
System.Workflow.ComponentModel (2)
AuthoringOM\Serializer\SerializableTypeCodeDomSerializer.cs (2)
106CodeVariableDeclarationStatement varDecl = new CodeVariableDeclarationStatement(TypeDescriptor.GetClassName(value), varName); 107varDecl.InitExpression = new CodeObjectCreateExpression(TypeDescriptor.GetClassName(value), new CodeExpression[0]);