mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-08-02 17:51:38 +00:00
71 lines
4.2 KiB
XML
71 lines
4.2 KiB
XML
<UserControl x:Class="NebulaAuth.View.Dialogs.SdaPasswordDialog"
|
|
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:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:other="clr-namespace:NebulaAuth.ViewModel.Other"
|
|
mc:Ignorable="d"
|
|
TextElement.Foreground="{DynamicResource BaseContentBrush}"
|
|
d:DataContext="{d:DesignInstance other:SdaPasswordDialogVM}"
|
|
Background="{DynamicResource WindowBackground}">
|
|
|
|
<Grid MinHeight="200" MinWidth="400" MaxWidth="500">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<Grid Margin="10,10,10,5">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<StackPanel Orientation="Horizontal">
|
|
<materialDesign:PackIcon Kind="Lock" Width="20" Height="20" Margin="0,0,5,0"
|
|
VerticalAlignment="Center"
|
|
Foreground="{DynamicResource PrimaryContentBrush}" />
|
|
<TextBlock FontSize="16" VerticalAlignment="Center" Foreground="{DynamicResource BaseContentBrush}"
|
|
Margin="7,0,0,0" HorizontalAlignment="Left"
|
|
Text="{Tr SdaPasswordDialog.Title}" />
|
|
</StackPanel>
|
|
<Button Grid.Column="1" Width="30" Height="30" Style="{StaticResource MaterialDesignIconForegroundButton}"
|
|
HorizontalAlignment="Right" CommandParameter="{StaticResource False}"
|
|
Command="{x:Static materialDesign:DialogHost.CloseDialogCommand}">
|
|
<materialDesign:PackIcon Kind="Close" Width="24" Height="24" Foreground="IndianRed" />
|
|
</Button>
|
|
</Grid>
|
|
<Separator Grid.Row="1" Opacity="0.7" />
|
|
<Grid Grid.Row="2" Margin="12">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<TextBlock Grid.Row="0" Text="{Tr SdaPasswordDialog.Message}" TextWrapping="Wrap"
|
|
Foreground="{DynamicResource BaseContentBrush}" Margin="10,10,10,8" />
|
|
<TextBox Grid.Row="1" Text="{Binding Password, UpdateSourceTrigger=PropertyChanged}"
|
|
materialDesign:TextFieldAssist.HasClearButton="True"
|
|
Padding="10" FontSize="15" Margin="10,0,10,0"
|
|
Style="{StaticResource MaterialDesignOutlinedTextBox}"
|
|
materialDesign:HintAssist.Hint="{Tr SdaPasswordDialog.PasswordHint}"
|
|
materialDesign:HintAssist.IsFloating="False"
|
|
materialDesign:TextFieldAssist.LeadingIcon="Key"
|
|
materialDesign:TextFieldAssist.HasLeadingIcon="True" />
|
|
<Grid Grid.Row="2" Margin="10,16,10,0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Button IsEnabled="{Binding IsFormValid}" IsDefault="True" Margin="0,5,5,5"
|
|
Style="{StaticResource MaterialDesignOutlinedButton}"
|
|
Command="{x:Static materialDesign:DialogHost.CloseDialogCommand}"
|
|
CommandParameter="{StaticResource True}" Content="{Tr Common.OK}" />
|
|
<Button IsCancel="True" Grid.Column="1" Margin="5,5,0,5"
|
|
Style="{StaticResource MaterialDesignOutlinedButton}"
|
|
Command="{x:Static materialDesign:DialogHost.CloseDialogCommand}"
|
|
CommandParameter="{StaticResource False}" Content="{Tr Common.Cancel}" />
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</UserControl> |