mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00

Changed Help tooltip location in New Database Settings page Suggest Save As when opening DB when another is opened and there is a save error
38 lines
1.7 KiB
XML
38 lines
1.7 KiB
XML
<Page
|
|
x:Class="ModernKeePass.Views.ImportExportPage"
|
|
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"
|
|
mc:Ignorable="d">
|
|
|
|
<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="100" />
|
|
<ColumnDefinition Width="200" />
|
|
<ColumnDefinition Width="200" />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<TextBlock Text="Import" Style="{StaticResource SubheaderTextBlockStyle}" />
|
|
<HyperlinkButton Grid.Column="0" Grid.Row="1" Content="Select file..." />
|
|
<StackPanel Grid.Column="1" Grid.Row="1" >
|
|
<TextBlock Text="Format" Style="{StaticResource BodyTextBlockStyle}" Margin="0,0,0,10" />
|
|
<ComboBox>
|
|
<ComboBoxItem>CSV</ComboBoxItem>
|
|
</ComboBox>
|
|
</StackPanel>
|
|
<StackPanel Grid.Column="2" Grid.Row="1" >
|
|
<TextBlock Text="Import into..." Style="{StaticResource BodyTextBlockStyle}" Margin="0,0,0,10" />
|
|
<RadioButton GroupName="ImportDestination" Content="New database" />
|
|
<RadioButton GroupName="ImportDestination" Content="Currently opened database" />
|
|
</StackPanel>
|
|
<Button Grid.Column="3" Grid.Row="1" Content="Import" />
|
|
</Grid>
|
|
</Page>
|