-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMainPage.xaml
More file actions
33 lines (31 loc) · 1.57 KB
/
MainPage.xaml
File metadata and controls
33 lines (31 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:dxsch="http://schemas.devexpress.com/xamarin/2014/forms/scheduler"
xmlns:local="clr-namespace:Scheduler_Reminders"
x:Class="Scheduler_Reminders.MainPage">
<ContentPage.BindingContext>
<local:ViewModel/>
</ContentPage.BindingContext>
<dxsch:DayView SnapToCellsMode="Never" Tap="OnTap">
<dxsch:DayView.DataStorage>
<dxsch:SchedulerDataStorage x:Name="storage" RemindersChanged="OnRemindersChanged">
<dxsch:SchedulerDataStorage.DataSource>
<dxsch:DataSource AppointmentsSource="{Binding AppointmentRepository}" >
<dxsch:DataSource.AppointmentMappings>
<dxsch:AppointmentMappings
AllDay="AllDay"
Start="Start"
End="End"
Subject="Subject"
LabelId="Label"
StatusId="Status"
RecurrenceInfo="RecurrenceInfo"
Reminder="ReminderInfo"/>
</dxsch:DataSource.AppointmentMappings>
</dxsch:DataSource>
</dxsch:SchedulerDataStorage.DataSource>
</dxsch:SchedulerDataStorage>
</dxsch:DayView.DataStorage>
</dxsch:DayView>
</ContentPage>