summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Pages/DirectoryPage.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Pages/DirectoryPage.cs')
-rw-r--r--Xamarin.Forms.Pages/DirectoryPage.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Xamarin.Forms.Pages/DirectoryPage.cs b/Xamarin.Forms.Pages/DirectoryPage.cs
new file mode 100644
index 00000000..c85fae40
--- /dev/null
+++ b/Xamarin.Forms.Pages/DirectoryPage.cs
@@ -0,0 +1,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); }
+ }
+ }
+} \ No newline at end of file