summaryrefslogtreecommitdiff
path: root/PagesGallery/PagesGallery/EventsPage.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'PagesGallery/PagesGallery/EventsPage.xaml.cs')
-rw-r--r--PagesGallery/PagesGallery/EventsPage.xaml.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/PagesGallery/PagesGallery/EventsPage.xaml.cs b/PagesGallery/PagesGallery/EventsPage.xaml.cs
new file mode 100644
index 00000000..695c0d01
--- /dev/null
+++ b/PagesGallery/PagesGallery/EventsPage.xaml.cs
@@ -0,0 +1,23 @@
+using Xamarin.Forms.Pages;
+
+namespace PagesGallery
+{
+ public partial class EventsPage : ListDataPage
+ {
+ public EventsPage()
+ {
+ InitializeComponent();
+ }
+ }
+
+ public class EventDetailsPage : DataPage
+ {
+ public EventDetailsPage()
+ {
+ ((IDataSourceProvider)this).MaskKey("_id");
+ ((IDataSourceProvider)this).MaskKey("guid");
+ ((IDataSourceProvider)this).MaskKey("index");
+ ((IDataSourceProvider)this).MaskKey("isPublic");
+ }
+ }
+} \ No newline at end of file