summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue1641.xaml.cs
blob: a5edbe35146031365fbe3a823df39e82b46065a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Xamarin.Forms;
using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;

namespace Xamarin.Forms.Controls
{	
#if APP
	[Preserve (AllMembers = true)]
	[Issue (IssueTracker.Github, 1641, "Static Resources inside TableView using XAML doesn't work", PlatformAffected.Android | PlatformAffected.iOS | PlatformAffected.WinPhone)]
	public partial class Issue1641 : ContentPage
	{
		public Issue1641 ()
		{
			InitializeComponent ();
		}
	}
#endif
}