summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2017-01-27 10:16:51 +0100
committerPaul DiPietro <pauldipietro@users.noreply.github.com>2017-02-23 09:37:17 -0600
commit32431a4427f60693394256ff3088c9b156ca798e (patch)
tree6f196698b2ddebd6327c05ebef194daadbfd3917 /Xamarin.Forms.Platform.WinRT
parente8a3cfd75585916881ccb3cae4eca511d0c1d467 (diff)
downloadxamarin-forms-32431a4427f60693394256ff3088c9b156ca798e.tar.gz
xamarin-forms-32431a4427f60693394256ff3088c9b156ca798e.tar.bz2
xamarin-forms-32431a4427f60693394256ff3088c9b156ca798e.zip
[UWP] connect the actual ObservableCollection to the ComboBox.ItemsSource
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT')
-rw-r--r--Xamarin.Forms.Platform.WinRT/PickerRenderer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.WinRT/PickerRenderer.cs b/Xamarin.Forms.Platform.WinRT/PickerRenderer.cs
index 7095333a..432b1d4f 100644
--- a/Xamarin.Forms.Platform.WinRT/PickerRenderer.cs
+++ b/Xamarin.Forms.Platform.WinRT/PickerRenderer.cs
@@ -53,7 +53,7 @@ namespace Xamarin.Forms.Platform.WinRT
Control.Loaded += ControlOnLoaded;
}
- Control.ItemsSource = Element.Items;
+ Control.ItemsSource = ((Picker.LockableObservableListWrapper)Element.Items)._list;
UpdateTitle();
UpdateSelectedIndex();