mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
27 lines
623 B
C#
27 lines
623 B
C#
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
|
// Copyright © 2024 Clemens Fischer
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
#if UWP
|
|
using Windows.UI.Xaml;
|
|
#else
|
|
using Microsoft.UI.Xaml;
|
|
#endif
|
|
|
|
namespace MapControl
|
|
{
|
|
public partial class MapItemsControl
|
|
{
|
|
public MapItemsControl()
|
|
{
|
|
DefaultStyleKey = typeof(MapItemsControl);
|
|
MapPanel.InitMapElement(this);
|
|
}
|
|
|
|
public new FrameworkElement ContainerFromItem(object item)
|
|
{
|
|
return (FrameworkElement)base.ContainerFromItem(item);
|
|
}
|
|
}
|
|
}
|