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"
|
2017-12-08 19:38:33 +01:00
|
|
|
x:Class="ModernKeePass.Views.SaveDatabasePage"
|
2017-09-27 18:01:21 +02:00
|
|
|
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}">
|
2020-04-16 19:43:17 +02:00
|
|
|
<HyperlinkButton x:Uid="SaveButton" Command="{Binding SaveCommand}" Foreground="{StaticResource MainColor}" Style="{StaticResource MainColorHyperlinkButton}" />
|
2017-11-28 18:53:10 +01:00
|
|
|
<TextBlock x:Uid="SaveDesc" Style="{StaticResource BodyTextBlockStyle}" Margin="15,0,0,30" />
|
2018-06-07 18:27:50 +02:00
|
|
|
<HyperlinkButton x:Uid="SaveAsButton" Click="SaveAsButton_OnClick" Foreground="{StaticResource MainColor}" Style="{StaticResource MainColorHyperlinkButton}" />
|
2017-11-28 18:53:10 +01:00
|
|
|
<TextBlock x:Uid="SaveAsDesc" Style="{StaticResource BodyTextBlockStyle}" Margin="15,0,0,30" />
|
2020-04-16 19:43:17 +02:00
|
|
|
<HyperlinkButton x:Uid="CloseButton" Command="{Binding CloseCommand}" Foreground="{StaticResource MainColor}" Style="{StaticResource MainColorHyperlinkButton}" />
|
2020-04-09 19:43:06 +02:00
|
|
|
<TextBlock x:Uid="CloseDesc" Style="{StaticResource BodyTextBlockStyle}" Margin="15,0,0,30" />
|
2017-09-29 17:23:35 -04:00
|
|
|
</StackPanel>
|
2017-09-27 18:01:21 +02:00
|
|
|
</Page>
|