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.
26 lines
1.8 KiB
26 lines
1.8 KiB
<Window x:Class="SchedulingSystemClient.UpdateWindow.XGJSWindow" |
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
|
|
Title="修改角色" Height="450" Width="800" Loaded="Window_Loaded" WindowStartupLocation="CenterScreen"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="0.5*"></RowDefinition> |
|
<RowDefinition Height="1*"></RowDefinition> |
|
<RowDefinition Height="1*"></RowDefinition> |
|
<RowDefinition Height="1*"></RowDefinition> |
|
<RowDefinition Height="0.5*"></RowDefinition> |
|
</Grid.RowDefinitions> |
|
<Grid.ColumnDefinitions> |
|
<ColumnDefinition Width="0.5*"></ColumnDefinition> |
|
<ColumnDefinition Width="1*"></ColumnDefinition> |
|
<ColumnDefinition Width="1.5*"></ColumnDefinition> |
|
<ColumnDefinition Width="0.5*"></ColumnDefinition> |
|
</Grid.ColumnDefinitions> |
|
<Label Grid.Row="1" Grid.Column="1" HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="20">角色名称:</Label> |
|
<Label Grid.Row="2" Grid.Column="1" HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="20">是否可用</Label> |
|
<TextBox x:Name="jsmc" Grid.Row="1" Grid.Column="2" Height="40" Width="300" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="20"></TextBox> |
|
<ComboBox x:Name="sfky" Grid.Row="2" Grid.Column="2" Height="40" Width="300" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="20"></ComboBox> |
|
<Button x:Name="btn_bc" Grid.Row="3" Grid.Column="1" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center" Width="100" Height="45" FontSize="20" Click="btn_bc_Click">保 存</Button> |
|
</Grid> |
|
</Window>
|
|
|