summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT/ICellRenderer.cs
blob: e34d2db216b44a81eb2fbd9647995f02bf0e170b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#if WINDOWS_UWP

namespace Xamarin.Forms.Platform.UWP
#else

namespace Xamarin.Forms.Platform.WinRT
#endif
{
	public interface ICellRenderer : IRegisterable
	{
		Windows.UI.Xaml.DataTemplate GetTemplate(Cell cell);
	}
}