summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT/ListViewGroupStyleSelector.cs
blob: 066f56813dccd62fbc3059fddd09532f4554a703 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Windows.UI.Xaml.Controls;

#if WINDOWS_UWP

namespace Xamarin.Forms.Platform.UWP
#else

namespace Xamarin.Forms.Platform.WinRT
#endif
{
	public class ListViewGroupStyleSelector : GroupStyleSelector
	{
		protected override GroupStyle SelectGroupStyleCore(object group, uint level)
		{
			return (GroupStyle)Windows.UI.Xaml.Application.Current.Resources["ListViewGroup"];
		}
	}
}