<Window x:Class="SmartScanner.LoginWindow"
|
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:SmartScanner"
|
mc:Ignorable="d"
|
Title="权限验证" Height="200" Width="300" ResizeMode="NoResize">
|
<Grid Margin="10">
|
<Grid.RowDefinitions>
|
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="AUto"/>
|
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="AUTO"/>
|
<RowDefinition Height="Auto"/>
|
</Grid.RowDefinitions>
|
|
<Label Grid.Row="0" Content="用户名:"/>
|
<ComboBox Grid.Row="1" x:Name="cmbUsername" ItemsSource="{Binding UserList}" Height="25" DisplayMemberPath="Username"/>
|
|
<Label Grid.Row="2" Content="密码:"/>
|
<PasswordBox Grid.Row="3" x:Name="txtPassword" Height="25"/>
|
|
<StackPanel Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Right">
|
<Button Content="登录" Width="80" Margin="5" Click="BtnLogin_Click"/>
|
<Button Content="取消" Width="80" Margin="5" Click="BtnCancel_Click"/>
|
</StackPanel>
|
</Grid>
|
</Window>
|