summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue1554.xaml.cs
blob: 61030b28849f5efba403528bad0252610fc786f3 (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
using System;
using System.Collections.Generic;
using Xamarin.Forms;
using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;

namespace Xamarin.Forms.Controls
{	
#if APP
	[Preserve (AllMembers = true)]
	[Issue (IssueTracker.Github, 1554, "NRE: NavigationProxy.set_Inner", PlatformAffected.Android | PlatformAffected.iOS | PlatformAffected.WinPhone)]
	public partial class Issue1554 : ContentPage
	{	
		public Issue1554 ()
		{
			BindingContext = new
			{
				Values = new[] { "ABC", "DEF", "GHI" }
			};

			InitializeComponent ();
		}
	}
#endif
}