1 write to ConverterType
System.Xaml (1)
System\Xaml\Schema\XamlValueConverter.cs (1)
36
ConverterType
= converterType;
19 references to ConverterType
PresentationFramework (1)
System\Windows\Markup\SetterTriggerConditionValueConverter.cs (1)
137
if (typeConverter.
ConverterType
== null)
System.Xaml (16)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (1)
1375
if (converter is not null && converter.
ConverterType
is not null && converter != BuiltInValueConverter.String)
System\Xaml\Runtime\DynamicMethodRuntime.cs (1)
144
Type clrType = ts.
ConverterType
;
System\Xaml\Schema\XamlValueConverter.cs (14)
63
_isPublic = (
ConverterType
is null ||
ConverterType
.IsVisible) ? ThreeValuedBool.True : ThreeValuedBool.False;
72
if (
ConverterType
== typeof(EnumConverter) &&
77
else if (
ConverterType
is not null)
79
if (!typeof(TConverterBase).IsAssignableFrom(
ConverterType
))
82
ConverterType
, typeof(TConverterBase)));
85
return (TConverterBase)Activator.CreateInstance(
ConverterType
, null);
93
if (
ConverterType
is not null)
97
return $"{
ConverterType
.Name}({TargetType.Name})";
100
return
ConverterType
.Name;
119
if (
ConverterType
is not null)
121
result ^=
ConverterType
.GetHashCode();
146
return converter1.
ConverterType
== converter2.
ConverterType
&&
System.Xaml.Tests (2)
System\Xaml\Schema\XamlValueConverterTests.cs (2)
26
Assert.Equal(converterType, converter.
ConverterType
);
43
Assert.Equal(converterType, converter.
ConverterType
);