XAML-Map-Control/MapControl/WPF/MapTileLayer.WPF.cs

19 lines
487 B
C#
Raw Normal View History

// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
// © 2017 Clemens Fischer
// Licensed under the Microsoft Public License (Ms-PL)
using System.Windows;
2017-08-04 21:38:58 +02:00
using System.Windows.Markup;
namespace MapControl
{
2017-08-04 21:38:58 +02:00
[ContentProperty("TileSource")]
public partial class MapTileLayer
{
static MapTileLayer()
{
IsHitTestVisibleProperty.OverrideMetadata(typeof(MapTileLayer), new FrameworkPropertyMetadata(false));
}
}
}