You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
3.3 KiB

<Window x:Name="登录" x:Class="connor_zwcadm.dialog.Login"
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:local="clr-namespace:connor_zwcadm.dialog"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Icon="/connor_zwcadm;component/Resources/logo_16.ico"
Background="{x:Null}"
Title="登录"
Visibility="Visible"
WindowStartupLocation="CenterOwner"
MouseDown="Window_MouseDown" Height="290" Width="720" FontFamily="Microsoft YaHei" Foreground="{x:Null}" TextOptions.TextFormattingMode="Display" AllowsTransparency="True" WindowStyle="None" ResizeMode="NoResize" Padding="0"
>
<Grid Margin="0,0,-2,-2">
<Rectangle Fill="#FFFBFBFB" RadiusX="8" RadiusY="8" Margin="10,10,10,10">
<Rectangle.Effect>
<DropShadowEffect BlurRadius="10" ShadowDepth="-5" Opacity="0.8" Direction="0" Color="#FF303030"/>
</Rectangle.Effect>
</Rectangle>
<Border CornerRadius="6, 0, 0, 6" HorizontalAlignment="Left" Margin="10,10,0,10" Width="442">
<Border.Background>
<ImageBrush Stretch="UniformToFill" ImageSource="/connor_zwcadm;component/Resources/rac_login_background.png"/>
</Border.Background>
</Border>
<Label Content="用户名" HorizontalAlignment="Right" Margin="0,83,200,0" VerticalAlignment="Top"/>
<Label Content="密 码" HorizontalAlignment="Right" Margin="0,140,200,0" VerticalAlignment="Top"/>
<!--<Label Content="角 色" HorizontalAlignment="Left" Margin="48,147,0,0" VerticalAlignment="Top"/>-->
<TextBox Name="tb_UserName" HorizontalAlignment="Right" Height="27" Margin="0,80,40,0" VerticalAlignment="Top" Width="150" BorderThickness="0,0,0,1" VerticalContentAlignment="Bottom" ToolTip="" Background="#FFFBFBFB"/>
<PasswordBox Name="tb_Password" HorizontalAlignment="Right" Height="27" Margin="0,137,40,0" VerticalAlignment="Top" Width="150" VerticalContentAlignment="Bottom" BorderThickness="0,0,0,1" Background="#FFFBFBFB"/>
<Button x:Name="b_Login" Content="登录" HorizontalAlignment="Right" Margin="0,214,150,0" VerticalAlignment="Top" Width="75" Height="24" IsDefault="True" Click="DoLogin"/>
<Rectangle Name="rec_Logout" Fill="#FFFBFBFB" RadiusX="8" RadiusY="8" Margin="460,10,10,10" Visibility="Hidden"/>
<Button x:Name="b_Close" Content="关闭" HorizontalAlignment="Right" Margin="0,214,50,0" VerticalAlignment="Top" Width="75" Height="24" Click="Button_Click_1" IsCancel="True"/>
<Button Name="b_Logout" Content="注销" HorizontalAlignment="Right" Margin="0,214,150,0" VerticalAlignment="Top" Width="75" Height="24" Click="DoLogout" Visibility="Hidden"/>
<Label Name="l_UserName" Content="" HorizontalAlignment="Center" Margin="440,120,0,0" VerticalAlignment="Top" Visibility="Hidden"/>
<!--<Image HorizontalAlignment="Left" Margin="10,10,0,10" Source="/connor_zwcad;component/Resources/rac_login_background.png"/>-->
</Grid>
</Window>