48 references to BaseType
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfXamlType.cs (1)
216type = type.BaseType;
System.Xaml (47)
System\Windows\Markup\XamlSetMarkupExtensionEventArgs.cs (1)
37XamlType baseType = CurrentType.BaseType;
System\Windows\Markup\XamlSetTypeConverterEventArgs.cs (1)
42XamlType baseType = CurrentType.BaseType;
System\Xaml\XamlObjectReader.cs (2)
3225XamlType baseType = member.DeclaringType.BaseType; 3245baseType = baseMember.DeclaringType.BaseType;
System\Xaml\XamlType.cs (43)
436curType = curType.BaseType; 674if (BaseType is not null) 676return BaseType.GetAliasedProperty(directive); 721return (BaseType is not null) ? BaseType.GetCollectionKind() : XamlCollectionKind.None; 760if (BaseType is not null) 762return BaseType.ContentProperty; 784if (BaseType is not null) 786IList<XamlType> baseWrappers = BaseType.ContentWrappers; 816if (BaseType is not null) 818return BaseType.DeferringLoader; 900if (BaseType is not null) 902return BaseType.IsWhitespaceSignificantCollection; 923else if (UnderlyingType is null && BaseType is not null) 925return BaseType.KeyType; 953else if (BaseType is not null) 955return BaseType.ItemType; 972if (BaseType is not null) 974return BaseType.MarkupExtensionReturnType; 983return (BaseType is not null) ? BaseType.GetAllAttachableMembers() : null; 993return (BaseType is not null) ? BaseType.GetAllMembers() : null; 1028if (BaseType is not null) 1030return skipReadOnlyCheck ? BaseType.LookupMember(name, true) : BaseType.GetMember(name); 1061return (BaseType is not null) ? BaseType.GetAttachableMember(name) : null; 1134if (BaseType is not null) 1136return BaseType.IsAmbient; 1158if (BaseType is not null) 1160XamlValueConverter<TypeConverter> result = BaseType.TypeConverter; 1202if (BaseType is not null) 1204XamlValueConverter<ValueSerializer> result = BaseType.ValueSerializer; 1242if (BaseType is not null) 1244return BaseType.TrimSurroundingWhitespace; 1260if (BaseType is not null) 1262return BaseType.IsUsableDuringInitialization; 1282if (BaseType is not null) 1284return BaseType.SetMarkupExtensionHandler; 1304if (BaseType is not null) 1306return BaseType.SetTypeConverterHandler; 1699XamlType baseType = BaseType;