change color of labels

This commit is contained in:
2026-03-01 19:42:29 +03:00
parent 112539880a
commit 7436748057

View File

@@ -31,7 +31,7 @@
<!-- Выбор файла --> <!-- Выбор файла -->
<StackPanel Spacing="10"> <StackPanel Spacing="10">
<TextBlock Text="File location" FontWeight="SemiBold"/> <TextBlock Text="File location" FontWeight="SemiBold" Foreground="Black" />
<Grid ColumnDefinitions="*, Auto" ColumnSpacing="10"> <Grid ColumnDefinitions="*, Auto" ColumnSpacing="10">
<TextBox x:Name="FilePathTextBox" <TextBox x:Name="FilePathTextBox"
Grid.Column="0" Grid.Column="0"
@@ -52,7 +52,7 @@
<!-- Ввод мастер-пароля --> <!-- Ввод мастер-пароля -->
<StackPanel Spacing="10"> <StackPanel Spacing="10">
<TextBlock Text="Master password" FontWeight="SemiBold"/> <TextBlock Text="Master password" FontWeight="SemiBold" Foreground="Black" />
<TextBox x:Name="PasswordBox" <TextBox x:Name="PasswordBox"
PasswordChar="*" PasswordChar="*"
Watermark="Enter password" Watermark="Enter password"
@@ -60,7 +60,7 @@
</StackPanel> </StackPanel>
<StackPanel Spacing="10"> <StackPanel Spacing="10">
<TextBlock Text="Confirm password" FontWeight="SemiBold"/> <TextBlock Text="Confirm password" FontWeight="SemiBold" Foreground="Black" />
<TextBox x:Name="ConfirmPasswordBox" <TextBox x:Name="ConfirmPasswordBox"
PasswordChar="*" PasswordChar="*"
Watermark="Confirm password" Watermark="Confirm password"
@@ -90,4 +90,4 @@
</StackPanel> </StackPanel>
</ScrollViewer> </ScrollViewer>
</Grid> </Grid>
</Window> </Window>