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.

32 lines
2.3 KiB

<Window x:Class="SchedulingSystem.XGGZBRVIPWindow"
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="brxm" Grid.Row="1" Grid.Column="2" Height="40" Width="300" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="20"></TextBox>
<TextBox x:Name="zlkh" Grid.Row="2" Grid.Column="2" Height="40" Width="300" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="20"></TextBox>
<TextBox x:Name="qz" Grid.Row="3" Grid.Column="2" Height="40" Width="300" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="20"></TextBox>
<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>