tabs to spaces

This commit is contained in:
2025-12-01 12:55:22 +03:00
parent 744572dc69
commit c93911fd19

View File

@@ -4,7 +4,7 @@
xmlns:m="using:KeyKeeper.Models"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:KeyKeeper.Views"
xmlns:local="clr-namespace:KeyKeeper.Views"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="KeyKeeper.Views.MainWindow"
x:DataType="vm:MainWindowViewModel"
@@ -15,93 +15,93 @@
<vm:MainWindowViewModel/>
</Design.DataContext>
<Grid ColumnDefinitions="1.3*, 3*">
<Grid ColumnDefinitions="1.3*, 3*">
<Border Background="#2328C4" Grid.Column="0">
<Grid RowDefinitions="Auto,*,Auto" Margin="30">
<Border Background="#2328C4" Grid.Column="0">
<Grid RowDefinitions="Auto,*,Auto" Margin="30">
<Svg Path="/Assets/logo_en.svg" Width="340" Height="340"/>
<Svg Path="/Assets/logo_en.svg" Width="340" Height="340"/>
<StackPanel Grid.Row="1" Spacing="5" VerticalAlignment="Top">
<Button Content="New Database"
Foreground="White"
Background="Transparent"
BorderThickness="0"
FontSize="28"
Cursor="Hand"
Click="CreateNewVault_Click"/>
<Button Content="Open Database"
<StackPanel Grid.Row="1" Spacing="5" VerticalAlignment="Top">
<Button Content="New Database"
Foreground="White"
Background="Transparent"
BorderThickness="0"
FontSize="28"
Cursor="Hand"
Click="OpenExistingVault_Click"/>
</StackPanel>
Background="Transparent"
BorderThickness="0"
FontSize="28"
Cursor="Hand"
Click="CreateNewVault_Click"/>
<StackPanel Grid.Row="2" Orientation="Horizontal" Spacing="25">
<Svg Path="/Assets/settings.svg" Width="61" Height="61"/>
<Button Command="{Binding OpenSettingsCommand}">
<Svg Path="/Assets/about.svg" Width="61" Height="61"/>
</Button>
</StackPanel>
<Button Content="Open Database"
Foreground="White"
Background="Transparent"
BorderThickness="0"
FontSize="28"
Cursor="Hand"
Click="OpenExistingVault_Click"/>
</StackPanel>
</Grid>
</Border>
<StackPanel Grid.Row="2" Orientation="Horizontal" Spacing="25">
<Svg Path="/Assets/settings.svg" Width="61" Height="61"/>
<Button Command="{Binding OpenSettingsCommand}">
<Svg Path="/Assets/about.svg" Width="61" Height="61"/>
</Button>
</StackPanel>
</Grid>
</Border>
<Grid Grid.Column="1" VerticalAlignment="Center">
<Grid RowDefinitions="Auto,Auto">
<Grid Grid.Column="1" VerticalAlignment="Center">
<Grid RowDefinitions="Auto,Auto">
<TextBlock Text="Recent Database"
FontSize="38"
Foreground="#2328C4"
FontWeight="SemiBold"
HorizontalAlignment="Center"
Margin="0,40,0,30"/>
<TextBlock Text="Recent Database"
FontSize="38"
Foreground="#2328C4"
FontWeight="SemiBold"
HorizontalAlignment="Center"
Margin="0,40,0,30"/>
<Border Grid.Row="1"
Width="700"
Height="260"
HorizontalAlignment="Center"
BorderBrush="#D0D0D0"
BorderThickness="1"
CornerRadius="4"
Padding="25">
<Border Grid.Row="1"
Width="700"
Height="260"
HorizontalAlignment="Center"
BorderBrush="#D0D0D0"
BorderThickness="1"
CornerRadius="4"
Padding="25">
<Grid RowDefinitions="Auto,*,*,*,*">
<Grid RowDefinitions="Auto,*,*,*,*">
<TextBlock Text="There is no data yet..."
FontSize="20"
Foreground="#777"
Margin="0,0,0,0"/>
<TextBlock Text="There is no data yet..."
FontSize="20"
Foreground="#777"
Margin="0,0,0,0"/>
<Rectangle Grid.Row="1"
Height="1"
Fill="#D0D0D0"
VerticalAlignment="Center"/>
<Rectangle Grid.Row="1"
Height="1"
Fill="#D0D0D0"
VerticalAlignment="Center"/>
<Rectangle Grid.Row="2"
Height="1"
Fill="#D0D0D0"
VerticalAlignment="Center"/>
<Rectangle Grid.Row="2"
Height="1"
Fill="#D0D0D0"
VerticalAlignment="Center"/>
<Rectangle Grid.Row="3"
Height="1"
Fill="#D0D0D0"
VerticalAlignment="Center"/>
<Rectangle Grid.Row="3"
Height="1"
Fill="#D0D0D0"
VerticalAlignment="Center"/>
<Rectangle Grid.Row="4"
Height="1"
Fill="#D0D0D0"
VerticalAlignment="Center"/>
<Rectangle Grid.Row="4"
Height="1"
Fill="#D0D0D0"
VerticalAlignment="Center"/>
</Grid>
</Border>
</Grid>
</Grid>
</Grid>
</Border>
</Grid>
</Grid>
</Grid>
</Grid>
</Window>