1 write to ConverterType
System.Xaml (1)
System\Xaml\Schema\XamlValueConverter.cs (1)
37ConverterType = converterType;
17 references to ConverterType
PresentationFramework (1)
System\Windows\Markup\SetterTriggerConditionValueConverter.cs (1)
148if (typeConverter.ConverterType == null)
System.Xaml (16)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (1)
1348if (converter!= null && converter.ConverterType != null && converter != BuiltInValueConverter.String)
System\Xaml\Runtime\DynamicMethodRuntime.cs (1)
143Type clrType = ts.ConverterType;
System\Xaml\Schema\XamlValueConverter.cs (14)
64_isPublic = (ConverterType == null || ConverterType.IsVisible) ? ThreeValuedBool.True : ThreeValuedBool.False; 73if (ConverterType == typeof(EnumConverter) && 78else if (ConverterType != null) 80if (!typeof(TConverterBase).IsAssignableFrom(ConverterType)) 83ConverterType, typeof(TConverterBase))); 86return (TConverterBase)Activator.CreateInstance(ConverterType, null); 94if (ConverterType != null) 98return ConverterType.Name + "(" + TargetType.Name + ")"; 101return ConverterType.Name; 121if (ConverterType != null) 123result ^= ConverterType.GetHashCode(); 146return converter1.ConverterType == converter2.ConverterType &&