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.
33 lines
2.3 KiB
33 lines
2.3 KiB
<Window x:Class="SchedulingSystem.XGKSWindow" |
|
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:SchedulingSystem" |
|
mc:Ignorable="d" |
|
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="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> |
|
<Label Grid.Row="3" Grid.Column="1" HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="20">是否启用:</Label> |
|
<TextBox x:Name="ksmc" Grid.Row="1" Grid.Column="2" Height="40" Width="300" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="20"></TextBox> |
|
<TextBox x:Name="ksbm" Grid.Row="2" Grid.Column="2" Height="40" Width="300" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="20"></TextBox> |
|
<ComboBox x:Name="sfqy" Grid.Row="3" Grid.Column="2" Height="40" Width="300" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="20"> |
|
</ComboBox> |
|
<Button x:Name="btn_bc" Grid.Row="4" Grid.Column="1" Grid.ColumnSpan="2" HorizontalAlignment="Center" VerticalAlignment="Center" Width="100" Height="45" FontSize="20" Click="btn_bc_Click">保 存</Button> |
|
</Grid> |
|
</Window>
|
|
|