TypeConverter useless for WinUI

This commit is contained in:
ClemensFischer 2024-04-11 15:23:58 +02:00
parent 2685792758
commit 5ad567239c
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ namespace MapControl
/// <summary> /// <summary>
/// Gets or sets the Locations that define the polygon points. /// Gets or sets the Locations that define the polygon points.
/// </summary> /// </summary>
#if !UWP #if !WINUI && !UWP
[System.ComponentModel.TypeConverter(typeof(LocationCollectionConverter))] [System.ComponentModel.TypeConverter(typeof(LocationCollectionConverter))]
#endif #endif
public IEnumerable<Location> Locations public IEnumerable<Location> Locations

View file

@ -32,7 +32,7 @@ namespace MapControl
/// <summary> /// <summary>
/// Gets or sets the Locations that define the polyline points. /// Gets or sets the Locations that define the polyline points.
/// </summary> /// </summary>
#if !UWP #if !WINUI && !UWP
[System.ComponentModel.TypeConverter(typeof(LocationCollectionConverter))] [System.ComponentModel.TypeConverter(typeof(LocationCollectionConverter))]
#endif #endif
public IEnumerable<Location> Locations public IEnumerable<Location> Locations