48 references to BaseType
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfXamlType.cs (1)
219type = 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)
3230XamlType baseType = member.DeclaringType.BaseType; 3250baseType = baseMember.DeclaringType.BaseType;
System\Xaml\XamlType.cs (43)
439curType = curType.BaseType; 677if (BaseType != null) 679return BaseType.GetAliasedProperty(directive); 724return (BaseType != null) ? BaseType.GetCollectionKind() : XamlCollectionKind.None; 763if (BaseType != null) 765return BaseType.ContentProperty; 787if (BaseType != null) 789IList<XamlType> baseWrappers = BaseType.ContentWrappers; 819if (BaseType != null) 821return BaseType.DeferringLoader; 903if (BaseType != null) 905return BaseType.IsWhitespaceSignificantCollection; 926else if (UnderlyingType == null && BaseType != null) 928return BaseType.KeyType; 956else if (BaseType != null) 958return BaseType.ItemType; 975if (BaseType != null) 977return BaseType.MarkupExtensionReturnType; 986return (BaseType != null) ? BaseType.GetAllAttachableMembers() : null; 996return (BaseType != null) ? BaseType.GetAllMembers() : null; 1031if (BaseType != null) 1033return skipReadOnlyCheck ? BaseType.LookupMember(name, true) : BaseType.GetMember(name); 1064return (BaseType != null) ? BaseType.GetAttachableMember(name) : null; 1137if (BaseType != null) 1139return BaseType.IsAmbient; 1161if (BaseType != null) 1163XamlValueConverter<TypeConverter> result = BaseType.TypeConverter; 1205if (BaseType != null) 1207XamlValueConverter<ValueSerializer> result = BaseType.ValueSerializer; 1245if (BaseType != null) 1247return BaseType.TrimSurroundingWhitespace; 1263if (BaseType != null) 1265return BaseType.IsUsableDuringInitialization; 1285if (BaseType != null) 1287return BaseType.SetMarkupExtensionHandler; 1307if (BaseType != null) 1309return BaseType.SetTypeConverterHandler; 1702XamlType baseType = BaseType;