mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-28 15:49:34 +00:00
46 lines
2.7 KiB
XML
46 lines
2.7 KiB
XML
<UserControl x:Class="NebulaAuth.View.Dialogs.SetCryptPasswordDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:other="clr-namespace:NebulaAuth.ViewModel.Other"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:nebulaAuth="clr-namespace:NebulaAuth"
|
|
mc:Ignorable="d"
|
|
d:DataContext="{d:DesignInstance other:LoginAgainVM}"
|
|
Background="{DynamicResource WindowBackground}">
|
|
|
|
|
|
<Grid MinHeight="100" MinWidth="300" MaxWidth="400">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<nebulaAuth:DialogHeader IconKind="Encryption"
|
|
Title="{Tr SetEncryptionPasswordDialog.Title}"
|
|
CloseParameter="{StaticResource False}" />
|
|
<TextBlock Grid.Row="1" IsHitTestVisible="False" TextWrapping="Wrap" FontWeight="Normal"
|
|
FontSize="16"
|
|
Text="{Tr SetEncryptionPasswordDialog.DialogText}"
|
|
Margin="10" HorizontalAlignment="Left" />
|
|
<PasswordBox TabIndex="0" FontSize="16" x:Name="PasswordBox"
|
|
materialDesign:PasswordBoxAssist.Password="{Binding Password, UpdateSourceTrigger=PropertyChanged}"
|
|
Margin="10" Grid.Row="2" Style="{StaticResource MaterialDesignFloatingHintRevealPasswordBox}"
|
|
materialDesign:HintAssist.Hint="{Tr SetEncryptionPasswordDialog.Password}" />
|
|
<Grid Grid.Row="3" Margin="10">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Button IsDefault="True" Margin="10,5,5,5" Style="{StaticResource MaterialDesignOutlinedButton}"
|
|
Command="{x:Static materialDesign:DialogHost.CloseDialogCommand}"
|
|
CommandParameter="{StaticResource True}" Content="{Tr SetEncryptionPasswordDialog.Ok}" />
|
|
<Button IsCancel="True" Grid.Column="1" Margin="5,5,10,5"
|
|
Style="{StaticResource MaterialDesignOutlinedButton}"
|
|
Command="{x:Static materialDesign:DialogHost.CloseDialogCommand}"
|
|
CommandParameter="{StaticResource False}" Content="{Tr SetEncryptionPasswordDialog.Cancel}" />
|
|
</Grid>
|
|
</Grid>
|
|
</UserControl> |