XAML-Map-Control/MapControl/WinUI/MapPath.WinUI.cs
2026-02-02 12:10:09 +01:00

17 lines
252 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);
}
}
}