-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPatientView.txt
More file actions
18 lines (18 loc) · 989 Bytes
/
Copy pathPatientView.txt
File metadata and controls
18 lines (18 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBlock Text="Patient Info" FontWeight="Bold" FontSize="16"/>
<TextBlock Text="Name" Grid.Row="1" FontWeight="Bold" Margin="5"/>
<TextBlock Text="{Binding Name}" Grid.Row="1" Grid.Column="1" Margin="5"/>
<TextBlock Text="Date Of Birth" Grid.Row="2" FontWeight="Bold" Margin="5"/>
<TextBlock Text="{Binding DateOfBirth}" Grid.Row="2" Grid.Column="1" Margin="5"/>
<TextBlock Text="Hospital" Grid.Row="3" FontWeight="Bold" Margin="5"/>
<TextBlock Text="{Binding Hospital}" Grid.Row="3" Grid.Column="1" Margin="5"/>