Dispenser/DispenserUI/Views/Windows/ResetPwdNotifyWindow.axaml

44 lines
1.9 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
SystemDecorations="None"
WindowStartupLocation="CenterScreen"
Background="#AA000000"
Height="1080"
Width="1920"
TransparencyLevelHint="Transparent"
TransparencyBackgroundFallback="Transparent"
x:Class="DispenserUI.Views.Windows.ResetPwdNotifyWindow">
<Grid Width="500" Height="250">
<Border Padding="10" CornerRadius="24" Background="#F8FAFB">
<StackPanel>
<Image Width="28" Height="28" Source="/Assets/UI/close@2x.png" Cursor="Hand"
HorizontalAlignment="Right" PointerPressed="Close" />
<TextBlock Text="密码已重置"
Foreground="#0D0D12"
FontSize="18"
FontWeight="Bold"
Margin="0,20,0,0"
HorizontalAlignment="Center" />
<TextBlock Text="该用户密码已经重置为88888888请重新登录"
Foreground="#0D0D12"
FontSize="16"
Margin="0,20,0,0"
HorizontalAlignment="Center" />
<Button Margin="0,30,0,0"
Width="370" Height="48"
CornerRadius="20"
Cursor="Hand"
HorizontalAlignment="Center"
Background="#5F57FF"
Click="Confirm">
<TextBlock Text="我知道了"
VerticalAlignment="Center"
HorizontalAlignment="Center"
Foreground="White"
FontSize="16" />
</Button>
</StackPanel>
</Border>
</Grid>
</Window>