summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla51642.xaml.cs
blob: ab164287ce40cda4a87c5f37524198588a3ce14c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

using Xamarin.Forms;
using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;

namespace Xamarin.Forms.Controls.Issues
{
    [Preserve(AllMembers = true)]
    [Issue(IssueTracker.Bugzilla, 51642, "Delayed BindablePicker UWP", PlatformAffected.All)]
    public partial class Bugzilla51642 : ContentPage
	{
		public Bugzilla51642 ()
		{
			InitializeComponent ();
            LoadDelayedVM();
		}

        public async void LoadDelayedVM()
        {
            await Task.Delay(1000);
            Device.BeginInvokeOnMainThread(() => BindingContext = new Bz51642VM());
        }
	}

    class Bz51642VM
    {
        public IList<string> Items {
            get {
                return new List<String> { "Foo", "Bar", "Baz" };
            }
        }
    }
}