mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00
Main sub pages also changed to better work with Main (but needs improvement) Added a Settings Page stub
23 lines
1.2 KiB
XML
23 lines
1.2 KiB
XML
<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>
|
|
<viewModels:SaveVm/>
|
|
</Page.DataContext>
|
|
|
|
<StackPanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
<TextBlock Style="{StaticResource HeaderTextBlockStyle}" Margin="80,-60,0,20" FontSize="36">
|
|
<Run Text="Save"></Run>
|
|
</TextBlock>
|
|
<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>
|
|
</StackPanel>
|
|
</Page>
|