2017-09-27 18:01:21 +02:00
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:viewModels="using:ModernKeePass.ViewModels"
x:Class="ModernKeePass.Pages.SaveDatabasePage"
mc:Ignorable="d">
<Page.DataContext>
2017-10-10 15:00:31 +02:00
<viewModels:SaveVm/>
2017-09-27 18:01:21 +02:00
</Page.DataContext>
2017-09-29 17:23:35 -04:00
<StackPanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
2017-10-16 16:16:58 +02:00
<TextBlock Style="{StaticResource HeaderTextBlockStyle}" Margin="0,-20,0,20">Save</TextBlock>
2017-10-13 11:48:58 +02:00
<HyperlinkButton Content="Save and close" Click="SaveButton_OnClick" />
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="15,0,0,30">This will save and close the currently opened database.</TextBlock>
<HyperlinkButton Content="Save as..." Click="SaveAsButton_OnClick" />
<TextBlock Style="{StaticResource BodyTextBlockStyle}" Margin="15,0,0,30">This will save the currently opened database as a new file and leave it open.</TextBlock>
2017-09-29 17:23:35 -04:00
</StackPanel>
2017-09-27 18:01:21 +02:00
</Page>