13 references to GetClassName
System.Windows.Forms (6)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
2386OnComComponentNameChanged(new ComponentRenameEventArgs(obj, oldName: null, TypeDescriptor.GetClassName(obj)));
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.cs (2)
100typeName = TypeDescriptor.GetClassName(owner); 114typeName = componentType is null ? TypeDescriptor.GetClassName(owner) : componentType.FullName;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\SingleSelectRootGridEntry.cs (2)
41_valueClassName = TypeDescriptor.GetClassName(Target); 185_valueClassName = TypeDescriptor.GetClassName(Target);
System\Windows\Forms\DataBinding\PropertyManager.cs (1)
72return $"{TypeDescriptor.GetClassName(_dataSource!)}.{_propName}";
System.Windows.Forms.Design (7)
System\ComponentModel\Design\SelectionService.cs (1)
234string? helpContext = TypeDescriptor.GetClassName(component);
System\ComponentModel\Design\Serialization\CodeDomDesignerLoader.cs (1)
873&& field.Type.BaseType.Equals(TypeDescriptor.GetClassName(component)))
System\ComponentModel\Design\Serialization\CodeDomSerializer.cs (1)
180string? varTypeName = TypeDescriptor.GetClassName(value);
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
1928return new CodeObjectCreateExpression(TypeDescriptor.GetClassName(value)!, []);
System\ComponentModel\Design\Serialization\ComponentCodeDomSerializer.cs (1)
208string? typeName = TypeDescriptor.GetClassName(value);
System\ComponentModel\Design\Serialization\TypeCodeDomSerializer.cs (1)
248typeName = TypeDescriptor.GetClassName(value);
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1244string? ICustomTypeDescriptor.GetClassName() => TypeDescriptor.GetClassName(DataGridViewColumn);