|
|
@@ -52,15 +52,27 @@
|
|
|
<materialDesign:PackIcon Grid.Row="2"
|
|
|
Kind="Password"
|
|
|
VerticalAlignment="Center"/>
|
|
|
- <PasswordBox Grid.Row="2"
|
|
|
- Height="50"
|
|
|
- Margin="20,0,20,0"
|
|
|
- HorizontalContentAlignment="Left"
|
|
|
- Style="{StaticResource MaterialDesignFloatingHintPasswordBox}"
|
|
|
- materialDesign:HintAssist.HelperText="{lex:Loc 请输入用户登录密码}"
|
|
|
- materialDesign:HintAssist.Hint="{lex:Loc 密码}"
|
|
|
- materialDesign:TextFieldAssist.HasClearButton="True"
|
|
|
- materialDesign:PasswordBoxAssist.Password="{Binding Path=UserPassword, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}"/>
|
|
|
+ <PasswordBox x:Name="PwdBox"
|
|
|
+ Grid.Row="2"
|
|
|
+ Height="50"
|
|
|
+ Margin="20,0,20,0"
|
|
|
+ KeyUp="PwdBox_KeyUp"
|
|
|
+ GotFocus="PwdBox_GotFocus"
|
|
|
+ HorizontalContentAlignment="Left"
|
|
|
+ Style="{StaticResource MaterialDesignFloatingHintPasswordBox}"
|
|
|
+ materialDesign:HintAssist.HelperText="{lex:Loc 请输入用户登录密码}"
|
|
|
+ materialDesign:HintAssist.Hint="{lex:Loc 密码}"
|
|
|
+ materialDesign:TextFieldAssist.HasClearButton="True"
|
|
|
+ materialDesign:PasswordBoxAssist.Password="{Binding Path=UserPassword, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True}"/>
|
|
|
+ <TextBlock x:Name="CapsLockText"
|
|
|
+ Grid.Row="2"
|
|
|
+ Margin="25,52,0,0"
|
|
|
+ HorizontalAlignment="Left"
|
|
|
+ VerticalAlignment="Top"
|
|
|
+ FontSize="12"
|
|
|
+ Foreground="OrangeRed"
|
|
|
+ Text="⚠ 大写锁定已开启"
|
|
|
+ Visibility="Collapsed"/>
|
|
|
<Grid Grid.Row="3"
|
|
|
Height="40"
|
|
|
Margin="20,5,20,0">
|