-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrimestr1.xaml
332 lines (316 loc) · 28.7 KB
/
Trimestr1.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
<Page x:Class="WomenConsulting.Trimestr1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:WomenConsulting"
mc:Ignorable="d"
d:DesignHeight="1600" d:DesignWidth="800"
Title="Page1" VerticalAlignment="Top">
<Page.Resources>
<Style x:Key="calculateGestTime" TargetType="{x:Type Button}">
<Style.Setters>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type ButtonBase}">
<Border x:Name="Border" BorderThickness="1" BorderBrush="Transparent">
<Border.Background>
<ImageBrush ImageSource="icons8-edit-calendar-96.png"/>
</Border.Background>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="Border" Property="Background">
<Setter.Value>
<ImageBrush ImageSource="icons8-edit-calendar-96.png"/>
</Setter.Value>
</Setter>
<Setter TargetName="Border" Property="BorderBrush" Value="White" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style.Setters>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Opacity" Value="35"/>
<Setter Property="Background">
<Setter.Value>
<ImageBrush ImageSource="icons8-edit-calendar-96.png"/>
</Setter.Value>
</Setter>
</Trigger>
</Style.Triggers>
</Style>
</Page.Resources>
<StackPanel>
<StackPanel Background="#FFAEB1FF" Margin="0" >
<Grid>
<Label Content="Тип обследования:" VerticalAlignment="Center" FontSize="16" Margin="15,0,0,0"/>
<ComboBox x:Name="typeOfSurvey" VerticalAlignment="Center" Width="180" HorizontalAlignment="Left" Margin="165,0,0,0" />
</Grid>
<WrapPanel Margin="15,0,0,0">
<Label Content="Срок беременности" FontWeight="Normal" FontSize="16"/>
<TextBox x:Name="gestationalTime_week" PreviewTextInput="onlyDigits_PreviewTextInput" HorizontalAlignment="Left" Margin="5,7,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="50" FontWeight="Normal"/>
<Label Content="недель" FontWeight="Normal" FontSize="16" Margin="0"/>
<TextBox x:Name="gestationalTime_day" PreviewTextInput="onlyDigits_PreviewTextInput" HorizontalAlignment="Left" Margin="0,7,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="50" FontWeight="Normal"/>
<Label Content="дней" FontWeight="Normal" Margin="0" FontSize="16"/>
<Button x:Name="calculateGestationalTime" Content ="Tolltip" Style="{StaticResource calculateGestTime}" ToolTip="Нажмите на кнопку для автоматического расчета срока беременности по дате последней менструации" Width="25" Foreground="{x:Null}" Margin="5,0,15,0" BorderBrush="{x:Null}" Height="25" Click="calculateGestationalTime_Click">
<Button.Background>
<ImageBrush ImageSource="icons8-edit-calendar-96.png"/>
</Button.Background>
</Button>
<ComboBox x:Name="gestationList" HorizontalAlignment="Left" Margin="0,3,0,0" VerticalAlignment="Top" Width="200" FontWeight="Normal"></ComboBox>
</WrapPanel>
<WrapPanel>
<Grid>
<Label Content="ЧСС:" VerticalAlignment="Center" FontSize="16" Margin="15,0,0,0" />
<TextBox x:Name="pulseText" PreviewTextInput="onlyDigits_PreviewTextInput" VerticalAlignment="Center" Width="120" Margin="65,0,0,0" HorizontalAlignment="Left"/>
</Grid>
<Grid>
<Label Content="Ритм:" VerticalAlignment="Center" FontSize="16" HorizontalAlignment="Left" Margin="15,0,0,0"/>
<ComboBox x:Name="rhythmList" VerticalAlignment="Center" Width="250" Margin="65,0,0,0" HorizontalAlignment="Left"/>
</Grid>
<Grid>
<Label Content="Движения:" VerticalAlignment="Center" FontSize="16" Margin="15,0,0,0"/>
<ComboBox x:Name="movementList" VerticalAlignment="Center" Width="120" Margin="105,0,0,0" HorizontalAlignment="Left"/>
</Grid>
</WrapPanel>
</StackPanel>
<Expander Foreground="Black" Header ="Фетометрия" Background="#FFD9DAFF" FontSize="18" FontWeight="Bold" IsExpanded="True" Margin="0">
<StackPanel Background="#D9DAFF" Margin="0" >
<WrapPanel>
<Label Content="Бипариетальный размер:" FontSize="16" Margin="21,0,0,0" FontWeight="Regular"/>
<TextBox x:Name="biparietalDiameterMM" PreviewTextInput="onlyDigits_PreviewTextInput" Width="80" Margin="20,5,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" FontWeight="Regular"/>
<Label Content="мм" HorizontalAlignment="Left" FontSize="16" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular"/>
<TextBox x:Name="biparietalDiameterWe" PreviewTextInput="onlyDigits_PreviewTextInput" VerticalAlignment="Top" Width="80" Margin="0,5,0,0" HorizontalAlignment="Left" FontWeight="Regular"/>
<Label Content="нед" HorizontalAlignment="Left" FontSize="16" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular"/>
</WrapPanel>
<WrapPanel>
<Label Content="Длина бедренной кости:" FontSize="16" Margin="21,0,0,0" FontWeight="Regular"/>
<TextBox x:Name="femurLenghtMM" PreviewTextInput="onlyDigits_PreviewTextInput" VerticalAlignment="Top" Width="80" Margin="26,5,0,0" HorizontalAlignment="Left" FontWeight="Regular"/>
<Label Content="мм" HorizontalAlignment="Left" FontSize="16" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular"/>
<TextBox x:Name="femurLenghtWeek" PreviewTextInput="onlyDigits_PreviewTextInput" VerticalAlignment="Top" Width="80" Margin="0,5,0,0" HorizontalAlignment="Left" FontWeight="Regular"/>
<Label Content="нед" HorizontalAlignment="Left" FontSize="16" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular"/>
</WrapPanel>
<WrapPanel >
<Label Content="Окружность живота:" FontSize="16" Margin="21,0,0,0" FontWeight="Regular"/>
<TextBox x:Name="circumferenceMM" PreviewTextInput="onlyDigits_PreviewTextInput" VerticalAlignment="Top" Width="80" Margin="55,5,0,0" HorizontalAlignment="Left" FontWeight="Regular" />
<Label Content="мм" HorizontalAlignment="Left" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular" FontSize="16"/>
<TextBox x:Name="circumferenceWeek" PreviewTextInput="onlyDigits_PreviewTextInput" VerticalAlignment="Top" Width="80" Margin="0,5,0,0" HorizontalAlignment="Left" FontWeight="Regular"/>
<Label Content="нед" HorizontalAlignment="Left" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular" FontSize="16"/>
</WrapPanel>
<WrapPanel>
<Label Content="Копчико-теменной размер:" FontSize="16" Margin="21,0,0,0" FontWeight="Regular"/>
<TextBox x:Name="coccyxParitelSizeMM" PreviewTextInput="onlyDigits_PreviewTextInput" FontWeight="Regular" VerticalAlignment="Top" Width="80" Margin="5,5,0,0" HorizontalAlignment="Left"/>
<Label Content="мм" HorizontalAlignment="Left" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular" FontSize="16"/>
<TextBox x:Name="coccyxParitelSizeWee" PreviewTextInput="onlyDigits_PreviewTextInput" FontWeight="Regular" VerticalAlignment="Top" Width="80" Margin="0,5,0,0" HorizontalAlignment="Left"/>
<Label Content="нед" HorizontalAlignment="Left" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular" FontSize="16"/>
</WrapPanel>
<WrapPanel>
<Label Content="Длина плеча:" FontSize="16" Margin="21,0,0,0" FontWeight="Regular"/>
<TextBox x:Name="shoulderLenghtMM" PreviewTextInput="onlyDigits_PreviewTextInput" FontWeight="Regular" VerticalAlignment="Top" Width="80" Margin="110,5,0,0" HorizontalAlignment="Left"/>
<Label Content="мм" HorizontalAlignment="Left" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular" FontSize="16"/>
<TextBox x:Name="shoulderLenghtWeek" PreviewTextInput="onlyDigits_PreviewTextInput" FontWeight="Regular" VerticalAlignment="Top" Width="80" Margin="0,5,0,0" HorizontalAlignment="Left"/>
<Label Content="нед" HorizontalAlignment="Left" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular" FontSize="16"/>
</WrapPanel>
<WrapPanel>
<Label Content="Длина костей предплечья:" FontSize="16" Margin="21,0,0,0" FontWeight="Regular"/>
<TextBox x:Name="legthForearmMM" PreviewTextInput="onlyDigits_PreviewTextInput" FontWeight="Regular" VerticalAlignment="Top" Width="80" Margin="13,5,0,0" HorizontalAlignment="Left"/>
<Label Content="мм" HorizontalAlignment="Left" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular" FontSize="16"/>
<TextBox x:Name="legthForearmWeek" PreviewTextInput="onlyDigits_PreviewTextInput" FontWeight="Regular" VerticalAlignment="Top" Width="80" Margin="0,5,0,0" HorizontalAlignment="Left"/>
<Label Content="нед" HorizontalAlignment="Left" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular" FontSize="16"/>
</WrapPanel>
<WrapPanel>
<Label Content="Длина костей голени:" FontSize="16" Margin="21,0,0,0" FontWeight="Regular"/>
<TextBox x:Name="legthShinMM" PreviewTextInput="onlyDigits_PreviewTextInput" FontWeight="Regular" VerticalAlignment="Top" Width="80" Margin="50,5,0,0" HorizontalAlignment="Left"/>
<Label Content="мм" HorizontalAlignment="Left" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular" FontSize="16"/>
<TextBox x:Name="legthShinWeek" PreviewTextInput="onlyDigits_PreviewTextInput" FontWeight="Regular" VerticalAlignment="Top" Width="80" Margin="0,5,0,0" HorizontalAlignment="Left"/>
<Label Content="нед" HorizontalAlignment="Left" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular" FontSize="16"/>
</WrapPanel>
<Grid Margin="15">
<Button x:Name="calculateButton" Content="Рассчитать перцентильные коридоры" Background="#FFAEB1FF" Padding="20,5" HorizontalAlignment="Center" Click="calculateButton_Click" FontWeight="Normal" FontSize="16"/>
</Grid>
</StackPanel>
</Expander>
<Expander Foreground="Black" Header ="Доплерометрия" Background="#FFD9DAFF" FontSize="18" FontWeight="Bold" IsExpanded="True" Margin="0">
<StackPanel Background="#D9DAFF" Margin="0,0,0,15">
<WrapPanel>
<Label Content="Средний пульсационный индекс маточных артерий:" FontSize="16" Margin="21,0,0,0" FontWeight="Regular"/>
<TextBox x:Name="uterineArteriesMM" PreviewTextInput="onlyDigits_PreviewTextInput" Width="80" Margin="20,5,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" FontWeight="Regular"/>
<Label Content="мм" HorizontalAlignment="Left" FontSize="16" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular"/>
<TextBox x:Name="uterineArteriesWeek" PreviewTextInput="onlyDigits_PreviewTextInput" VerticalAlignment="Top" Width="80" Margin="0,5,0,0" HorizontalAlignment="Left" FontWeight="Regular"/>
<Label Content="нед" HorizontalAlignment="Left" FontSize="16" Margin="0,0,0,0" VerticalAlignment="Top" FontWeight="Regular"/>
</WrapPanel>
<Grid Margin="15">
<Button x:Name="calculateDoplerometryButton" Content="Рассчитать срок" Background="#FFAEB1FF" Padding="20,5" HorizontalAlignment="Center" FontWeight="Normal" FontSize="16" Click="calculateDoplerometryButton_Click"/>
</Grid>
</StackPanel>
</Expander>
<Expander Foreground="Black" Header ="Расширенный осмотр" Background="#FFAEB1FF" FontSize="18" FontWeight="Bold" IsExpanded="True">
<StackPanel Background="#FFAEB1FF">
<WrapPanel Margin="11,5">
<Label Content="ЦНС. Лицо. Шея." HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<Grid>
<Label Content="Лицо" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Regular"/>
<ComboBox x:Name="face" HorizontalAlignment="Left" Margin="65,5,0,0" VerticalAlignment="Top" Width="140" SelectedIndex="0" FontSize="12" FontWeight="Normal">
</ComboBox>
</Grid>
<Grid>
<Label Content="Глазницы" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="eyeSocketsList" HorizontalAlignment="Left" Margin="95,3,0,0" VerticalAlignment="Top" Width="140" SelectedIndex="0" FontSize="12" FontWeight="Normal">
</ComboBox>
</Grid>
<Grid>
<Label Content="Носовая кость" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="nasalBoneList" HorizontalAlignment="Left" Margin="130,3,0,0" VerticalAlignment="Top" Width="140" SelectedIndex="0" FontSize="12" FontWeight="Normal">
</ComboBox>
</Grid>
<Grid>
<Label Content="Хориоидные сплетения" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="choroidPlexusesList" HorizontalAlignment="Left" Margin="195,3,0,0" VerticalAlignment="Top" Width="140" SelectedIndex="0" FontSize="12" FontWeight="Normal">
</ComboBox>
</Grid>
<Grid>
<Label Content="Лимфангиэктазия" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="limphangiectasiaList" HorizontalAlignment="Left" Margin="155,3,0,0" VerticalAlignment="Top" Width="140" FontSize="12" FontWeight="Normal"/>
</Grid>
</WrapPanel>
<WrapPanel Margin="11,5">
<Label Content="Сердце и крупные сосуды." HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<Grid>
<Label Content="Сердце" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="heartList" HorizontalAlignment="Left" Margin="80,5,0,0" VerticalAlignment="Top" Width="140" SelectedIndex="0" FontSize="12" FontWeight="Normal">
</ComboBox>
</Grid>
<Grid>
<Label Content="4х камерный срез" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="chamber4SliceList" HorizontalAlignment="Left" Margin="155,5,0,0" VerticalAlignment="Top" Width="140" FontSize="12" FontWeight="Normal"/>
</Grid>
<Grid>
<Label Content="Камеры сердца" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="heartChamberList" HorizontalAlignment="Left" Margin="135,5,0,0" VerticalAlignment="Top" Width="140" SelectedIndex="0" FontSize="12" FontWeight="Normal">
</ComboBox>
</Grid>
</WrapPanel>
<WrapPanel Margin="11,5">
<Label Content="Грудная полость." HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<Grid>
<Label Content="Расположение сердца" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="locationOfHeartList" HorizontalAlignment="Left" Margin="190,5,0,0" VerticalAlignment="Top" Width="140" SelectedIndex="0" FontSize="12" FontWeight="Normal">
</ComboBox>
</Grid>
<Grid>
<Label Content="Объемные образования" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="volumetricFormations" HorizontalAlignment="Left" Margin="205,5,0,0" VerticalAlignment="Top" Width="140" FontSize="12" FontWeight="Normal" SelectedIndex="0">
</ComboBox>
</Grid>
</WrapPanel>
<WrapPanel Margin="11,5">
<Label Content="Брюшная полость." HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<Grid>
<Label Content="Передняя брюшная стенка" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="anteriorAbdominalWal" HorizontalAlignment="Left" Margin="220,5,0,0" VerticalAlignment="Top" Width="140" FontSize="12" FontWeight="Normal" SelectedIndex="0">
</ComboBox>
</Grid>
<Grid>
<Label Content="Пупочное кольцо" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="umbilicalRingList" HorizontalAlignment="Left" Margin="155,5,0,0" VerticalAlignment="Top" Width="140" FontSize="12" FontWeight="Normal" SelectedIndex="0">
</ComboBox>
</Grid>
<Grid>
<Label Content="Желудок" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="stomachList" HorizontalAlignment="Left" Margin="90,5,0,0" VerticalAlignment="Top" Width="140" SelectedIndex="0" FontSize="12" FontWeight="Normal">
</ComboBox>
</Grid>
<Grid>
<Label Content="Мочевой пузырь" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="bladderList" HorizontalAlignment="Left" Margin="150,5,0,0" VerticalAlignment="Top" Width="140" FontSize="12" FontWeight="Normal" SelectedIndex="0">
</ComboBox>
</Grid>
<Grid>
<Label Content="Объемные образования" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="volumetricFormaBelly" HorizontalAlignment="Left" Margin="200,5,0,0" VerticalAlignment="Top" Width="140" SelectedIndex="0" FontSize="12" FontWeight="Normal">
</ComboBox>
</Grid>
</WrapPanel>
<WrapPanel Margin="11,5">
<Label Content="Скелет." HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<Grid>
<Label Content="Позвоночник" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="spineList" HorizontalAlignment="Left" Margin="125,5,0,0" VerticalAlignment="Top" Width="140" SelectedIndex="0" FontSize="12" FontWeight="Normal">
</ComboBox>
</Grid>
<Grid>
<Label Content="Конечности" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="limbsList" HorizontalAlignment="Left" Margin="110,5,0,0" VerticalAlignment="Top" Width="140" FontSize="12" FontWeight="Normal" SelectedIndex="0">
</ComboBox>
</Grid>
<Grid>
<Label Content="Кисти и стопы" FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="handsAndFeetList" HorizontalAlignment="Left" Margin="125,5,0,0" VerticalAlignment="Top" Width="140" FontSize="12" FontWeight="Normal" SelectedIndex="0">
</ComboBox>
</Grid>
</WrapPanel>
<WrapPanel Margin="11,5">
<Label Content="Маркеры ХА." HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<Grid>
<Label Content="Толщина воротникового пространства" FontWeight="Regular" HorizontalAlignment="Left" Margin="0,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<TextBox x:Name="colarMMText" PreviewTextInput="doubleNumber_PreviewTextInput" HorizontalAlignment="Left" Margin="300,5,0,0" VerticalAlignment="Top" Width="120" FontWeight="Normal"/>
<Label Content="мм." FontWeight="Regular" HorizontalAlignment="Left" Margin="425,0,0,0" VerticalAlignment="Top" FontSize="16"/>
</Grid>
<Grid>
<Label Content="НК " FontWeight="Regular" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<TextBox x:Name="NKText" PreviewTextInput="onlyDigits_PreviewTextInput" HorizontalAlignment="Left" Margin="40,5,0,0" VerticalAlignment="Top" Width="120" FontWeight="Normal"/>
<Label Content="мм." FontWeight="Regular" HorizontalAlignment="Left" Margin="160,0,0,0" VerticalAlignment="Top" FontSize="16"/>
</Grid>
</WrapPanel>
<WrapPanel Margin="11,5,11,15">
<Label Content="Другие:" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<TextBox x:Name="anotherText" FontWeight="Regular" HorizontalAlignment="Left" Margin="5,7,0,0" VerticalAlignment="Top" Width="800"/>
</WrapPanel>
</StackPanel>
</Expander>
<StackPanel Background="#D9DAFF">
<WrapPanel Margin="11,5">
<Label Content="Плацента" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<ComboBox x:Name="placentaWallList" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="250"/>
<TextBox x:Name="maturityFirstText" HorizontalAlignment="Left" Margin="5,7,0,0" VerticalAlignment="Top" Width="50"/>
<TextBox x:Name="maturitySecondText" PreviewTextInput="onlyDigits_PreviewTextInput" HorizontalAlignment="Left" Margin="5,7,0,0" VerticalAlignment="Top" Width="20"/>
<Label Content="степени зрелости" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
</WrapPanel>
<WrapPanel Margin="11,5,11,15">
<Label Content="Количество вод" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<ComboBox x:Name="amountWaterList" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="250"/>
<Label Content="Визуализация" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16"/>
<ComboBox x:Name="visualizationText" HorizontalAlignment="Left" Margin="5,7,0,0" VerticalAlignment="Top" Width="150" Text="удовлетворительная"/>
</WrapPanel>
</StackPanel>
<StackPanel Background="#FFAEB1FF">
<WrapPanel Margin="16,5">
<Label Content="Заключение: " HorizontalAlignment="Left" Margin="5,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<ComboBox x:Name="conclusionList" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="350"/>
<ComboBox x:Name="uterusList" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="350"/>
<ComboBox x:Name="faceAndNeckList" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="350"/>
<ComboBox x:Name="limsList" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="350"/>
<ComboBox x:Name="heartSystemList" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="350"/>
<ComboBox x:Name="intestineList" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="350"/>
<ComboBox x:Name="abdominalCavityList" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="350"/>
<ComboBox x:Name="umbilicalCordList" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="350"/>
<TextBox x:Name="conclusion2" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="350"/>
</WrapPanel>
<WrapPanel Margin="11,5">
<Label Content="Дополнительные данные: " HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<ComboBox x:Name="additionalList" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="350"/>
<TextBox x:Name="additionalDataText" HorizontalAlignment="Left" Margin="5,5,0,0" VerticalAlignment="Top" Width="800"/>
</WrapPanel>
<Grid Margin="11,5,11,15">
<Label Content="Дата обследования: " HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<DatePicker x:Name="dateText" HorizontalAlignment="Left" Margin="185,7,0,0" VerticalAlignment="Top" Width="130"/>
<Label Content="Врач: " HorizontalAlignment="Right" Margin="0,0,210,0" VerticalAlignment="Top" FontSize="16" FontWeight="Bold"/>
<ComboBox x:Name="doctorList" HorizontalAlignment="Right" Margin="5,5,0,0" VerticalAlignment="Top" Width="200"/>
</Grid>
</StackPanel>
</StackPanel>
</Page>