2026-03-21 00:58:01 +01:00
|
|
|
<abstract:CalendarPageAbstract
|
2025-12-26 20:46:48 +01:00
|
|
|
x:Class="Wino.Calendar.Views.CalendarPage"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:abstract="using:Wino.Calendar.Views.Abstract"
|
2026-03-23 10:22:47 +01:00
|
|
|
xmlns:calendarControls="using:Wino.Calendar.Controls"
|
2025-12-26 20:46:48 +01:00
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
mc:Ignorable="d">
|
|
|
|
|
|
2026-03-23 10:22:47 +01:00
|
|
|
<Grid>
|
|
|
|
|
<calendarControls:CalendarPeriodControl
|
|
|
|
|
x:Name="CalendarSurface"
|
|
|
|
|
IsEnabled="{x:Bind ViewModel.IsCalendarEnabled, Mode=OneWay}"
|
|
|
|
|
CalendarItems="{x:Bind ViewModel.CalendarItems, Mode=OneWay}"
|
|
|
|
|
CalendarSettings="{x:Bind ViewModel.CurrentSettings, Mode=OneWay}"
|
|
|
|
|
VisibleRange="{x:Bind ViewModel.CurrentVisibleRange, Mode=OneWay}" />
|
|
|
|
|
</Grid>
|
2025-12-26 20:46:48 +01:00
|
|
|
</abstract:CalendarPageAbstract>
|