31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<abstract:IdlePageAbstract
|
|
xmlns:abstract="using:Wino.Views.Abstract"
|
|
x:Class="Wino.Views.IdlePage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:helpers="using:Wino.Helpers"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:controls="using:Wino.Controls"
|
|
mc:Ignorable="d">
|
|
|
|
<!-- Empty Page for Mail Rendering Sub Frame. -->
|
|
<Grid>
|
|
<StackPanel
|
|
Opacity="0.5"
|
|
Spacing="6"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center">
|
|
|
|
<controls:WinoFontIcon Icon="Mail" FontSize="80" />
|
|
|
|
<TextBlock
|
|
HorizontalAlignment="Center"
|
|
FontSize="31"
|
|
Text="{x:Bind ViewModel.SelectedMessageText, Mode=OneWay}"
|
|
Style="{StaticResource SubheaderTextBlockStyle}"
|
|
x:Name="CountTextBlock" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</abstract:IdlePageAbstract>
|