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.

21 lines
1.9 KiB

<Window x:Class="Audit.Windows.user"
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:local="clr-namespace:Audit.Windows"
mc:Ignorable="d"
Title="用户登录" Height="200" Width="300" WindowStartupLocation="CenterScreen" ResizeMode="NoResize">
<Grid>
<TextBlock HorizontalAlignment="Left" Height="25" Margin="55,30,0,0" TextWrapping="Wrap" Text="用户" VerticalAlignment="Top" Width="35" FontSize="16"/>
<TextBlock HorizontalAlignment="Left" Height="25" Margin="55,60,0,0" TextWrapping="Wrap" Text="密码" VerticalAlignment="Top" Width="35" FontSize="16"/>
<TextBlock HorizontalAlignment="Left" Height="25" Margin="55,130,0,0" TextWrapping="Wrap" Text="时间" VerticalAlignment="Top" Width="35" FontSize="16"/>
<TextBox HorizontalAlignment="Left" Height="25" Margin="90,130,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="150" x:Name="userst" IsTabStop="True"
BorderBrush="{x:Null}" Text="600" InputMethod.IsInputMethodEnabled="False" />
<TextBox HorizontalAlignment="Left" Height="25" Margin="90,30,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="150" x:Name="users" IsTabStop="True"/>
<TextBox HorizontalAlignment="Left" Height="25" Margin="90,60,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="150" x:Name="Passwds" IsTabStop="True"/>
<Button HorizontalAlignment="Left" Height="35" Margin="60,90,0,0" VerticalAlignment="Top" Content="登录" Width="75" Click="Log" FontSize="16"/>
<Button HorizontalAlignment="Left" Height="35" Margin="165,90,0,0" VerticalAlignment="Top" Content="取消" Width="75" Click="Exit" FontSize="16"/>
</Grid>
</Window>