XAML-Map-Control/MapControl/MapPath.Silverlight.WinRT.cs
2015-01-20 17:52:02 +01:00

21 lines
408 B
C#

// XAML Map Control - http://xamlmapcontrol.codeplex.com/
// © 2015 Clemens Fischer
// Licensed under the Microsoft Public License (Ms-PL)
#if WINDOWS_RUNTIME
using Windows.UI.Xaml.Shapes;
#else
using System.Windows.Shapes;
#endif
namespace MapControl
{
public partial class MapPath : Path
{
public MapPath()
{
MapPanel.AddParentMapHandlers(this);
}
}
}