Avalonia Pushpin

This commit is contained in:
ClemensFischer 2024-05-25 15:55:31 +02:00
parent 1788da27bd
commit 8e4110b600
10 changed files with 287 additions and 133 deletions

View file

@ -3,7 +3,6 @@
// Licensed under the Microsoft Public License (Ms-PL)
using Avalonia.Controls;
using System;
namespace MapControl
{
@ -18,8 +17,6 @@ namespace MapControl
public static readonly StyledProperty<Location> LocationProperty =
DependencyPropertyHelper.AddOwner<MapContentControl, Location>(MapPanel.LocationProperty);
protected override Type StyleKeyOverride => typeof(MapContentControl);
/// <summary>
/// Gets/sets MapPanel.AutoCollapse.
/// </summary>
@ -44,6 +41,5 @@ namespace MapControl
/// </summary>
public class Pushpin : MapContentControl
{
protected override Type StyleKeyOverride => typeof(Pushpin);
}
}