XAML-Map-Control/MapControl/WinUI/MapPath.WinUI.cs

16 lines
222 B
C#
Raw Normal View History

2025-02-27 18:46:32 +01:00
#if UWP
using Windows.UI.Xaml.Shapes;
2024-05-22 11:25:32 +02:00
#else
using Microsoft.UI.Xaml.Shapes;
2021-06-14 21:41:37 +02:00
#endif
2026-04-13 17:14:49 +02:00
namespace MapControl;
public partial class MapPath : Path
{
2026-04-13 17:14:49 +02:00
public MapPath()
{
2026-04-13 17:14:49 +02:00
MapPanel.InitMapElement(this);
}
}