summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Pages/DirectoryPage.cs
blob: c85fae4034f86ccd8e2952006ecb4d65894ea6d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Xamarin.Forms.Pages
{
	public class DirectoryPage : DataPage
	{
		public static readonly BindableProperty IsGroupingEnabledProperty = BindableProperty.Create(nameof(IsGroupingEnabled), typeof(bool), typeof(DirectoryPage), default(bool));

		public bool IsGroupingEnabled
		{
			get { return (bool)GetValue(IsGroupingEnabledProperty); }
			set { SetValue(IsGroupingEnabledProperty, value); }
		}
	}
}