2025-11-15 14:52:01 +01:00
|
|
|
<abstract:IdlePageAbstract
|
2025-12-26 20:46:48 +01:00
|
|
|
x:Class="Wino.Views.Mail.IdlePage"
|
2025-09-29 11:16:14 +02:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:abstract="using:Wino.Views.Abstract"
|
|
|
|
|
xmlns:controls="using:Wino.Controls"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:helpers="using:Wino.Helpers"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
mc:Ignorable="d">
|
|
|
|
|
|
2026-04-20 19:38:30 +02:00
|
|
|
<Grid>
|
|
|
|
|
<StackPanel
|
|
|
|
|
MaxWidth="440"
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
|
Spacing="12"
|
|
|
|
|
Visibility="{x:Bind ViewModel.IsMailEmptyStateVisible, Mode=OneWay}">
|
|
|
|
|
<TextBlock
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
Style="{StaticResource TitleTextBlockStyle}"
|
|
|
|
|
Text="{x:Bind ViewModel.MailEmptyStateTitle, Mode=OneWay}"
|
|
|
|
|
TextAlignment="Center"
|
|
|
|
|
TextWrapping="WrapWholeWords" />
|
|
|
|
|
<TextBlock
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
|
|
|
|
|
Style="{StaticResource BodyTextBlockStyle}"
|
|
|
|
|
Text="{x:Bind ViewModel.MailEmptyStateMessage, Mode=OneWay}"
|
|
|
|
|
TextAlignment="Center"
|
|
|
|
|
TextWrapping="WrapWholeWords" />
|
|
|
|
|
<StackPanel
|
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
|
Orientation="Horizontal"
|
|
|
|
|
Spacing="12">
|
|
|
|
|
<Button
|
|
|
|
|
Command="{x:Bind ViewModel.AddAccountCommand}"
|
|
|
|
|
Content="{x:Bind ViewModel.AddAccountText, Mode=OneWay}"
|
|
|
|
|
Style="{ThemeResource AccentButtonStyle}" />
|
|
|
|
|
<Button
|
|
|
|
|
Command="{x:Bind ViewModel.ManageAccountsCommand}"
|
|
|
|
|
Content="{x:Bind ViewModel.ManageAccountsText, Mode=OneWay}" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
2025-09-29 11:16:14 +02:00
|
|
|
|
|
|
|
|
</abstract:IdlePageAbstract>
|