fix EntryEditWindow

This commit is contained in:
2026-03-27 15:22:16 +03:00
parent 848a6cbbb8
commit 4cc58740e0

View File

@@ -4,13 +4,13 @@
x:Class="KeyKeeper.Views.EntryEditWindow"
Title="Add Entry"
CanResize="False"
Width="540"
Height="300"
Width="400"
Height="250"
Background="White">
<Grid RowDefinitions="Auto,Auto,Auto,Auto,Auto" ColumnDefinitions="*,*" Margin="5">
<Grid RowDefinitions="Auto,Auto,Auto,Auto,*" ColumnDefinitions="1*,3*" Margin="5">
<TextBlock Text="Add New Password Entry" FontSize="20" HorizontalAlignment="Center"
Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2"/>
Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" Margin="0,0,0,20"/>
<TextBlock Text="Entry name:" HorizontalAlignment="Right"
Grid.Row="1" Grid.Column="0" Margin="5" />
@@ -38,8 +38,8 @@
</Border>
</Grid>
<Button Content="Done" HorizontalAlignment="Center"
Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="2"
<Button Content="Done" HorizontalAlignment="Center" Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="2"
VerticalAlignment="Bottom"
Background="#aaa" Click="AddButton_Click" />
</Grid>