XAML-Map-Control/MapControl/MapPolygon.cs

15 lines
327 B
C#
Raw Normal View History

// XAML Map Control - http://xamlmapcontrol.codeplex.com/
2012-05-04 12:52:20 +02:00
// Copyright © 2012 Clemens Fischer
// Licensed under the Microsoft Public License (Ms-PL)
namespace MapControl
{
public class MapPolygon : MapPolyline
{
protected override bool IsClosed
2012-05-04 12:52:20 +02:00
{
get { return true; }
2012-05-04 12:52:20 +02:00
}
}
}