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.
35 lines
2.6 KiB
35 lines
2.6 KiB
<Window x:Class="SchedulingSystemClient.UpdateWindow.XGMMWindow" |
|
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:SchedulingSystemClient.UpdateWindow" |
|
mc:Ignorable="d" |
|
Title="修改密码" Height="400" Width="600" WindowStartupLocation="CenterScreen"> |
|
<Grid> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="0.7*"></ColumnDefinition> |
|
<ColumnDefinition Width="1*"></ColumnDefinition> |
|
<ColumnDefinition Width="2*"></ColumnDefinition> |
|
<ColumnDefinition Width="1*"></ColumnDefinition> |
|
</Grid.ColumnDefinitions> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="0.2*"></RowDefinition> |
|
<RowDefinition Height="1*"></RowDefinition> |
|
<RowDefinition Height="1*"></RowDefinition> |
|
<RowDefinition Height="1*"></RowDefinition> |
|
<RowDefinition Height="1*"></RowDefinition> |
|
<RowDefinition Height="1*"></RowDefinition> |
|
<RowDefinition Height="0.2*"></RowDefinition> |
|
</Grid.RowDefinitions> |
|
<Label Grid.Row="1" Grid.Column="1" HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="18">工号:</Label> |
|
<Label Grid.Row="2" Grid.Column="1" HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="18">旧密码:</Label> |
|
<Label Grid.Row="3" Grid.Column="1" HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="18">新密码:</Label> |
|
<Label Grid.Row="4" Grid.Column="1" HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="18">确认密码:</Label> |
|
<TextBox x:Name="gh" Grid.Row="1" Grid.Column="2" Height="35" VerticalAlignment="Center" FontSize="18" VerticalContentAlignment="Center"></TextBox> |
|
<PasswordBox x:Name="jmm" Grid.Row="2" Grid.Column="2" Height="35" VerticalAlignment="Center" FontSize="18" VerticalContentAlignment="Center"></PasswordBox> |
|
<PasswordBox x:Name="xmm" Grid.Row="3" Grid.Column="2" Height="35" VerticalAlignment="Center" FontSize="18" VerticalContentAlignment="Center"></PasswordBox> |
|
<PasswordBox x:Name="qrmm" Grid.Row="4" Grid.Column="2" Height="35" VerticalAlignment="Center" FontSize="18" VerticalContentAlignment="Center"></PasswordBox> |
|
<Button Grid.Row="5" Grid.Column="1" Grid.ColumnSpan="2" Width="120" Height="45" FontSize="18" Margin="50,0,0,0" Click="Button_Click">保 存</Button> |
|
</Grid> |
|
</Window>
|
|
|