mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
57 lines
1.3 KiB
C#
57 lines
1.3 KiB
C#
// XAML Map Control - https://github.com/ClemensFischer/XAML-Map-Control
|
|
// © 2018 Clemens Fischer
|
|
// Licensed under the Microsoft Public License (Ms-PL)
|
|
|
|
#if WINDOWS_UWP
|
|
using Windows.UI.Xaml;
|
|
using Windows.UI.Xaml.Controls;
|
|
using KeyEventArgs = Windows.UI.Xaml.Input.KeyRoutedEventArgs;
|
|
#else
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Input;
|
|
#endif
|
|
|
|
namespace MapControl
|
|
{
|
|
/// <summary>
|
|
/// Container class for an item in a MapItemsControl.
|
|
/// </summary>
|
|
public class MapItem : ListBoxItem
|
|
{
|
|
public MapItem()
|
|
{
|
|
DefaultStyleKey = typeof(MapItem);
|
|
|
|
MapPanel.InitMapElement(this);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Manages a collection of selectable items on a Map.
|
|
/// </summary>
|
|
public class MapItemsControl : ListBox
|
|
{
|
|
public MapItemsControl()
|
|
{
|
|
DefaultStyleKey = typeof(MapItemsControl);
|
|
|
|
MapPanel.InitMapElement(this);
|
|
}
|
|
|
|
protected override DependencyObject GetContainerForItemOverride()
|
|
{
|
|
return new MapItem();
|
|
}
|
|
|
|
protected override bool IsItemItsOwnContainerOverride(object item)
|
|
{
|
|
return item is MapItem;
|
|
}
|
|
|
|
protected override void OnKeyDown(KeyEventArgs e)
|
|
{
|
|
}
|
|
}
|
|
}
|