| File: System\Xaml\Replacements\TypeTypeConverter.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\System.Xaml\System.Xaml.csproj (System.Xaml) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #nullable disable using System.ComponentModel; using System.Globalization; using System.Windows.Markup; using System.Xaml.Schema; namespace System.Xaml.Replacements { /// <summary> /// TypeConverter for System.Type /// </summary> internal class TypeTypeConverter : TypeConverter { public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) => sourceType == typeof(string); public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (context is not null && value is string typeName) { IXamlTypeResolver typeResolver = GetService<IXamlTypeResolver>(context); if (typeResolver is not null) { return typeResolver.Resolve(typeName); } } return base.ConvertFrom(context, culture, value); } public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) => destinationType == typeof(string); public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (context is not null && value is Type type && destinationType == typeof(string)) { string result = ConvertTypeToString(context, type); if (result is not null) { return result; } } return base.ConvertTo(context, culture, value, destinationType); } private static string ConvertTypeToString(ITypeDescriptorContext context, Type type) { IXamlSchemaContextProvider schemaContextProvider = GetService<IXamlSchemaContextProvider>(context); if (schemaContextProvider is null) { return null; } if (schemaContextProvider.SchemaContext is null) { return null; } XamlType xamlType = schemaContextProvider.SchemaContext.GetXamlType(type); if (xamlType is null) { return null; } return XamlTypeTypeConverter.ConvertXamlTypeToString(context, xamlType); } private static TService GetService<TService>(ITypeDescriptorContext context) where TService : class => context.GetService(typeof(TService)) as TService; } }