2018-08-02 17:40:30 +02:00
|
|
|
<Page
|
2020-06-05 19:08:29 +02:00
|
|
|
x:Class="ModernKeePass.Views.ImportPage"
|
2018-08-02 17:40:30 +02:00
|
|
|
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}" />
|
2020-05-05 16:59:49 +02:00
|
|
|
<HyperlinkButton Grid.Column="0" Grid.Row="1" Content="Select file..." />
|
2018-08-02 17:40:30 +02:00
|
|
|
<StackPanel Grid.Column="1" Grid.Row="1" >
|
|
|
|
<TextBlock Text="Format" Style="{StaticResource BodyTextBlockStyle}" Margin="0,0,0,10" />
|
2020-05-05 16:59:49 +02:00
|
|
|
<ComboBox>
|
2018-09-07 18:16:40 +02:00
|
|
|
<ComboBoxItem>CSV</ComboBoxItem>
|
|
|
|
</ComboBox>
|
2018-08-02 17:40:30 +02:00
|
|
|
</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>
|
2020-05-05 16:59:49 +02:00
|
|
|
<Button Grid.Column="3" Grid.Row="1" Content="Import" />
|
2018-08-02 17:40:30 +02:00
|
|
|
</Grid>
|
|
|
|
</Page>
|