XAML-Map-Control/MapControl/MapPath.Silverlight.WinRT.cs

21 lines
413 B
C#
Raw Normal View History

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