Update TypeConverters.cs

This commit is contained in:
Clemens 2021-11-16 21:39:22 +01:00
parent 7d04b93b6a
commit a53c29c7a2

View file

@ -56,7 +56,7 @@ namespace MapControl
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
return new TileSource { UriFormat = value as string };
return new TileSource { UriFormat = (string)value };
}
}
}