// XAML Map Control - http://xamlmapcontrol.codeplex.com/ // © 2015 Clemens Fischer // Licensed under the Microsoft Public License (Ms-PL) #if WINDOWS_RUNTIME using Windows.UI.Xaml.Controls; #else using System.Windows.Controls; #endif namespace MapControl { /// /// Container class for an item in a MapItemsControl. /// public class MapItem : ListBoxItem { public MapItem() { DefaultStyleKey = typeof(MapItem); MapPanel.AddParentMapHandlers(this); } } }