1 write to ConverterType
System.Xaml (1)
System\Xaml\Schema\XamlValueConverter.cs (1)
37
ConverterType
= converterType;
19 references to ConverterType
PresentationFramework (1)
System\Windows\Markup\SetterTriggerConditionValueConverter.cs (1)
138
if (typeConverter.
ConverterType
== null)
System.Xaml (16)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (1)
1376
if (converter is not null && converter.
ConverterType
is not null && converter != BuiltInValueConverter.String)
System\Xaml\Runtime\DynamicMethodRuntime.cs (1)
143
Type clrType = ts.
ConverterType
;
System\Xaml\Schema\XamlValueConverter.cs (14)
64
_isPublic = (
ConverterType
is null ||
ConverterType
.IsVisible) ? ThreeValuedBool.True : ThreeValuedBool.False;
73
if (
ConverterType
== typeof(EnumConverter) &&
78
else if (
ConverterType
is not null)
80
if (!typeof(TConverterBase).IsAssignableFrom(
ConverterType
))
83
ConverterType
, typeof(TConverterBase)));
86
return (TConverterBase)Activator.CreateInstance(
ConverterType
, null);
94
if (
ConverterType
is not null)
98
return $"{
ConverterType
.Name}({TargetType.Name})";
101
return
ConverterType
.Name;
120
if (
ConverterType
is not null)
122
result ^=
ConverterType
.GetHashCode();
147
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
);