You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.9 KiB
XML
64 lines
2.9 KiB
XML
<Window x:Class="Aucma.Core.PrintTo.Views.LoginPageView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:local="clr-namespace:Aucma.Core.PrintTo.Views"
|
|
mc:Ignorable="d"
|
|
Title="登录"
|
|
FontFamily="Microsoft YaHei"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowStyle="ToolWindow" WindowState="Normal" ResizeMode="NoResize"
|
|
Height="600" Width="800">
|
|
<Window.Background>
|
|
<ImageBrush ImageSource="/Assets/Images/login-background.png" />
|
|
</Window.Background>
|
|
<Border Margin="5" Background="Transparent" CornerRadius="10" >
|
|
<Border.Effect>
|
|
<DropShadowEffect Color="Gray" ShadowDepth="0" BlurRadius="5" Opacity="0.3" Direction="0"></DropShadowEffect>
|
|
</Border.Effect>
|
|
<Canvas>
|
|
<StackPanel >
|
|
<Image Source="/Assets/Images/Newlog.png" Width="100" />
|
|
</StackPanel>
|
|
<materialDesign:Card Background="#fff" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="200 100"
|
|
UniformCornerRadius="15" Width="400" Height="300"
|
|
>
|
|
<materialDesign:DialogHost CloseOnClickAway="True" x:Name="DialogHost">
|
|
<StackPanel>
|
|
|
|
<TextBox Margin="0 50 0 0"
|
|
x:Name="txtUserName"
|
|
Width="300"
|
|
FontSize="12"
|
|
materialDesign:HintAssist.Hint="账号"
|
|
BorderThickness="1"
|
|
BorderBrush="{StaticResource MaterialDesignDivider}"
|
|
Style="{StaticResource MaterialDesignOutlinedTextBox}"
|
|
>
|
|
</TextBox>
|
|
<PasswordBox
|
|
Margin="0 10 0 0"
|
|
x:Name="txtPassword"
|
|
Width="300"
|
|
FontSize="12"
|
|
materialDesign:HintAssist.Hint="密码"
|
|
BorderThickness="1"
|
|
BorderBrush="{StaticResource MaterialDesignDivider}"
|
|
Style="{StaticResource MaterialDesignOutlinedPasswordBox}"
|
|
></PasswordBox>
|
|
<Button Margin="0 20 0 0"
|
|
x:Name="loginBtn"
|
|
Style="{StaticResource MaterialDesignFlatMidBgButton}"
|
|
Width="300"
|
|
Height="53"
|
|
materialDesign:ButtonAssist.CornerRadius="10"
|
|
Content="登录"/>
|
|
</StackPanel>
|
|
</materialDesign:DialogHost>
|
|
</materialDesign:Card>
|
|
</Canvas>
|
|
</Border>
|
|
</Window>
|