XAML-Map-Control/MapControl/WinUI/MapPath.WinUI.cs
2026-04-13 17:14:49 +02:00

15 lines
222 B
C#

#if UWP
using Windows.UI.Xaml.Shapes;
#else
using Microsoft.UI.Xaml.Shapes;
#endif
namespace MapControl;
public partial class MapPath : Path
{
public MapPath()
{
MapPanel.InitMapElement(this);
}
}