| | |
| | | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| | | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| | | xmlns:local="clr-namespace:PdmAlert" |
| | | WindowStartupLocation="CenterScreen" |
| | | mc:Ignorable="d" |
| | | Title="LoginWindow" Height="450" Width="800"> |
| | | Title="{Binding windowTitle}" Height="250" Width="400"> |
| | | <AdornerDecorator> |
| | | <Border x:Name="mainBorder"> |
| | | <Grid Height="200" VerticalAlignment="Top" Margin="20"> |
| | | <Grid.RowDefinitions> |
| | | <RowDefinition Height="30"/> |
| | | <RowDefinition Height="30"/> |
| | | <RowDefinition Height="30"/> |
| | | <RowDefinition Height="Auto"/> |
| | | <RowDefinition Height="50"/> |
| | | </Grid.RowDefinitions> |
| | | |
| | |
| | | <TextBox x:Name="usernameTextBlock" VerticalAlignment="Stretch" VerticalContentAlignment="Center" Grid.Row="0" Grid.Column="1"/> |
| | | <Label Content="密码" VerticalContentAlignment="Center" Grid.Row="1" Grid.Column="0"/> |
| | | <PasswordBox x:Name="passwordTextBlock" VerticalAlignment="Stretch" VerticalContentAlignment="Center" Grid.Row="1" Grid.Column="1"/> |
| | | <CheckBox Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" x:Name="rememberMeInput">自动登录</CheckBox> |
| | | <CheckBox Margin="0,10,0,5" VerticalContentAlignment="Center" Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" x:Name="rememberMeInput">自动登录</CheckBox> |
| | | <Button Margin="0,10,0,0" Click="Button_Click" Padding="5" Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2">登录</Button> |
| | | </Grid> |
| | | </Border> |