44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
<ContentDialog
|
|
x:Class="Wino.Dialogs.WhatIsNewDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="using:Wino.Mail.WinUI.Controls"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:domain="using:Wino.Core.Domain"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
HorizontalContentAlignment="Stretch"
|
|
VerticalContentAlignment="Stretch"
|
|
Style="{StaticResource WinoDialogStyle}"
|
|
mc:Ignorable="d">
|
|
|
|
<ContentDialog.Resources>
|
|
<x:Double x:Key="ContentDialogMinWidth">480</x:Double>
|
|
<x:Double x:Key="ContentDialogMaxWidth">560</x:Double>
|
|
<x:Double x:Key="ContentDialogMinHeight">480</x:Double>
|
|
<x:Double x:Key="ContentDialogMaxHeight">700</x:Double>
|
|
</ContentDialog.Resources>
|
|
|
|
<Grid RowSpacing="16">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<controls:UpdateNotesFlipViewControl x:Name="UpdateNotesControl" Sections="{x:Bind Sections, Mode=OneTime}" />
|
|
|
|
<StackPanel
|
|
Grid.Row="1"
|
|
HorizontalAlignment="Right"
|
|
VerticalAlignment="Center"
|
|
Orientation="Horizontal"
|
|
Spacing="8">
|
|
<Button
|
|
x:Name="GetStartedButton"
|
|
Click="OnGetStartedClicked"
|
|
Content="{x:Bind domain:Translator.WhatIsNew_GetStartedButton}"
|
|
Style="{StaticResource AccentButtonStyle}"
|
|
Visibility="Collapsed" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</ContentDialog>
|