2025-02-27 18:46:32 +01:00
|
|
|
|
using System.Windows;
|
2012-12-06 23:28:12 +01:00
|
|
|
|
|
2012-11-23 16:16:09 +01:00
|
|
|
|
namespace MapControl
|
|
|
|
|
|
{
|
2026-02-01 22:56:50 +01:00
|
|
|
|
public partial class MapContentControl
|
2012-11-23 16:16:09 +01:00
|
|
|
|
{
|
2021-01-17 21:39:42 +01:00
|
|
|
|
static MapContentControl()
|
2021-01-17 00:31:30 +01:00
|
|
|
|
{
|
2021-01-17 21:39:42 +01:00
|
|
|
|
DefaultStyleKeyProperty.OverrideMetadata(typeof(MapContentControl), new FrameworkPropertyMetadata(typeof(MapContentControl)));
|
2016-08-08 20:36:02 +02:00
|
|
|
|
}
|
2012-11-23 16:16:09 +01:00
|
|
|
|
}
|
2021-01-17 21:39:42 +01:00
|
|
|
|
|
2026-02-01 22:56:50 +01:00
|
|
|
|
public partial class Pushpin
|
2021-01-17 21:39:42 +01:00
|
|
|
|
{
|
|
|
|
|
|
static Pushpin()
|
|
|
|
|
|
{
|
|
|
|
|
|
DefaultStyleKeyProperty.OverrideMetadata(typeof(Pushpin), new FrameworkPropertyMetadata(typeof(Pushpin)));
|
|
|
|
|
|
}
|
2022-02-09 23:10:54 +01:00
|
|
|
|
|
2024-05-23 18:08:14 +02:00
|
|
|
|
public static readonly DependencyProperty CornerRadiusProperty =
|
|
|
|
|
|
DependencyPropertyHelper.Register<Pushpin, CornerRadius>(nameof(CornerRadius));
|
2022-02-09 23:10:54 +01:00
|
|
|
|
|
|
|
|
|
|
public CornerRadius CornerRadius
|
|
|
|
|
|
{
|
2022-08-06 10:40:59 +02:00
|
|
|
|
get => (CornerRadius)GetValue(CornerRadiusProperty);
|
|
|
|
|
|
set => SetValue(CornerRadiusProperty, value);
|
2022-02-09 23:10:54 +01:00
|
|
|
|
}
|
2021-01-17 21:39:42 +01:00
|
|
|
|
}
|
2012-11-23 16:16:09 +01:00
|
|
|
|
}
|