[UWP] Fix resource key name PushPinTemplate

This commit is contained in:
Rui Marinho 2016-03-23 17:52:51 +00:00
Родитель 2411bdd705
Коммит 3adea68113
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -23,7 +23,7 @@ namespace Xamarin.Forms.Maps.WinRT
if (pin == null)
throw new ArgumentNullException();
ContentTemplate = Windows.UI.Xaml.Application.Current.Resources["pushPinTemplate"] as Windows.UI.Xaml.DataTemplate;
ContentTemplate = Windows.UI.Xaml.Application.Current.Resources["PushPinTemplate"] as Windows.UI.Xaml.DataTemplate;
DataContext = Content = _pin = pin;
UpdateLocation();