43 lines
1.7 KiB
XML
43 lines
1.7 KiB
XML
<abstract:CalendarPageAbstract
|
|
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"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:domain="using:Wino.Core.Domain"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
|
|
<Border
|
|
Margin="4,0,7,7"
|
|
BorderBrush="{StaticResource CardStrokeColorDefaultBrush}"
|
|
BorderThickness="1"
|
|
CornerRadius="7">
|
|
<Grid Padding="24" RowSpacing="12">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock
|
|
FontSize="20"
|
|
FontWeight="SemiBold"
|
|
Text="{x:Bind ViewModel.VisibleDateRangeText, Mode=OneWay}" />
|
|
|
|
<TextBlock
|
|
Grid.Row="1"
|
|
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
|
|
Text="{x:Bind domain:Translator.SettingsCalendarSettings_Title, Mode=OneWay}" />
|
|
|
|
<Border
|
|
Grid.Row="2"
|
|
Padding="20"
|
|
Background="{ThemeResource CardBackgroundFillColorDefaultBrush}"
|
|
CornerRadius="8">
|
|
<TextBlock Text="Calendar rendering is temporarily disabled while visible date range loading is being refactored." TextWrapping="WrapWholeWords" />
|
|
</Border>
|
|
</Grid>
|
|
</Border>
|
|
</abstract:CalendarPageAbstract>
|