HouseSettingPageView.xaml 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. <UserControl x:Class="ivf_tl_Operate.View.HouseSettingPageView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:ivf_tl_Operate.View"
  7. xmlns:customControl="clr-namespace:ivf_tl_CustomControls;assembly=ivf_tl_CustomControls_Surface"
  8. mc:Ignorable="d"
  9. d:DesignHeight="2736" d:DesignWidth="1824">
  10. <Grid Background="White">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="auto"/>
  13. <RowDefinition Height="auto"/>
  14. <RowDefinition Height="auto"/>
  15. <RowDefinition Height="auto"/>
  16. <RowDefinition Height="auto"/>
  17. <RowDefinition Height="auto"/>
  18. <RowDefinition Height="auto"/>
  19. </Grid.RowDefinitions>
  20. <Grid Grid.Row="0" Background="{StaticResource BannerTopFill}">
  21. <Grid.ColumnDefinitions>
  22. <ColumnDefinition Width="250"/>
  23. <ColumnDefinition Width="1"/>
  24. <ColumnDefinition Width="1"/>
  25. <ColumnDefinition/>
  26. <ColumnDefinition Width="414"/>
  27. </Grid.ColumnDefinitions>
  28. <customControl:ButtonLeftImage Grid.Column="0" Content="{DynamicResource C0044}" Click="Return_Click" Width="250" Height="134" IconWidth="46" IconHeight="46" FontSize="44" FontWeight="Medium" Foreground="#4D75AC" BorderThickness="0" Background="Transparent" IconSource="/ivf_tl_Operate;component/Resources/Image/button_return.png" IconMargin="0 0 10 0"/>
  29. <Border Grid.Column="1" Background="#FFFFFF"/>
  30. <Border Grid.Column="2" Background="#DFE0E4"/>
  31. <TextBlock Grid.Column="3" Text="{DynamicResource C0184}" FontSize="60" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  32. </Grid>
  33. <TextBlock Grid.Row="1" Text="{DynamicResource C0185}" FontSize="24" FontWeight="SemiBold" Margin="5"/>
  34. <ListView ItemsSource="{Binding HouseInfoList}" Grid.Row="2" Margin="25" FontSize="24">
  35. <ListView.ItemContainerStyle>
  36. <Style TargetType="{x:Type ListViewItem}">
  37. <Setter Property="HorizontalContentAlignment" Value="Stretch"/>
  38. </Style>
  39. </ListView.ItemContainerStyle>
  40. <ListView.View>
  41. <GridView>
  42. <GridViewColumn Header="{DynamicResource C0110}" >
  43. <GridViewColumn.CellTemplate>
  44. <DataTemplate>
  45. <TextBlock Text="{Binding xuHao}" FontSize="24" HorizontalAlignment="Center"/>
  46. </DataTemplate>
  47. </GridViewColumn.CellTemplate>
  48. </GridViewColumn>
  49. <GridViewColumn Header="{DynamicResource C0112}" >
  50. <GridViewColumn.CellTemplate>
  51. <DataTemplate>
  52. <TextBlock Text="{Binding houseSn}" FontSize="24" HorizontalAlignment="Center"/>
  53. </DataTemplate>
  54. </GridViewColumn.CellTemplate>
  55. </GridViewColumn>
  56. <GridViewColumn Header="{DynamicResource C0071}">
  57. <GridViewColumn.CellTemplate>
  58. <DataTemplate>
  59. <TextBlock Text="{Binding housePort}" FontSize="24" HorizontalAlignment="Center"/>
  60. </DataTemplate>
  61. </GridViewColumn.CellTemplate>
  62. </GridViewColumn>
  63. <GridViewColumn Header="CCDSN">
  64. <GridViewColumn.CellTemplate>
  65. <DataTemplate>
  66. <TextBlock Text="{Binding ccdSn}" FontSize="24" HorizontalAlignment="Center"/>
  67. </DataTemplate>
  68. </GridViewColumn.CellTemplate>
  69. </GridViewColumn>
  70. <GridViewColumn Header="CCDID">
  71. <GridViewColumn.CellTemplate>
  72. <DataTemplate>
  73. <TextBlock Text="{Binding ccdId}" FontSize="24" HorizontalAlignment="Center"/>
  74. </DataTemplate>
  75. </GridViewColumn.CellTemplate>
  76. </GridViewColumn>
  77. <GridViewColumn Header="{DynamicResource C0186}">
  78. <GridViewColumn.CellTemplate>
  79. <DataTemplate>
  80. <TextBlock Text="{Binding ccdWidth}" FontSize="24" HorizontalAlignment="Center" />
  81. </DataTemplate>
  82. </GridViewColumn.CellTemplate>
  83. </GridViewColumn>
  84. <GridViewColumn Header="{DynamicResource C0187}">
  85. <GridViewColumn.CellTemplate>
  86. <DataTemplate>
  87. <TextBlock Text="{Binding ccdHeight}" FontSize="24" HorizontalAlignment="Center" />
  88. </DataTemplate>
  89. </GridViewColumn.CellTemplate>
  90. </GridViewColumn>
  91. <GridViewColumn Header="{DynamicResource C0188}">
  92. <GridViewColumn.CellTemplate>
  93. <DataTemplate>
  94. <TextBlock Text="{Binding targetWidth}" FontSize="24" HorizontalAlignment="Center" />
  95. </DataTemplate>
  96. </GridViewColumn.CellTemplate>
  97. </GridViewColumn>
  98. <GridViewColumn Header="{DynamicResource C0189}">
  99. <GridViewColumn.CellTemplate>
  100. <DataTemplate>
  101. <TextBlock Text="{Binding targetHeight}" FontSize="24" HorizontalAlignment="Center" />
  102. </DataTemplate>
  103. </GridViewColumn.CellTemplate>
  104. </GridViewColumn>
  105. <GridViewColumn Header="{DynamicResource C0190}">
  106. <GridViewColumn.CellTemplate>
  107. <DataTemplate>
  108. <TextBlock Text="{Binding ccdExposure}" FontSize="24" HorizontalAlignment="Center"/>
  109. </DataTemplate>
  110. </GridViewColumn.CellTemplate>
  111. </GridViewColumn>
  112. <GridViewColumn Header="{DynamicResource C0191}">
  113. <GridViewColumn.CellTemplate>
  114. <DataTemplate>
  115. <TextBlock Text="{Binding inletValveOpeningTime}" FontSize="24" HorizontalAlignment="Center"/>
  116. </DataTemplate>
  117. </GridViewColumn.CellTemplate>
  118. </GridViewColumn>
  119. <GridViewColumn Header="{DynamicResource C0192}">
  120. <GridViewColumn.CellTemplate>
  121. <DataTemplate>
  122. <TextBlock Text="{Binding temperatureLowerHeatingPlate}" FontSize="24" HorizontalAlignment="Center"/>
  123. </DataTemplate>
  124. </GridViewColumn.CellTemplate>
  125. </GridViewColumn>
  126. <GridViewColumn Header="{DynamicResource C0193}">
  127. <GridViewColumn.CellTemplate>
  128. <DataTemplate>
  129. <Viewbox Height="35" HorizontalAlignment="Center">
  130. <CheckBox VerticalAlignment="Center" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" IsChecked="{Binding openPort,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged,Converter={StaticResource IntToBoolConverter}}" FontSize="24" HorizontalAlignment="Center"/>
  131. </Viewbox>
  132. </DataTemplate>
  133. </GridViewColumn.CellTemplate>
  134. </GridViewColumn>
  135. <GridViewColumn Header="{DynamicResource C0194}">
  136. <GridViewColumn.CellTemplate>
  137. <DataTemplate>
  138. <Viewbox Height="35" HorizontalAlignment="Center">
  139. <CheckBox VerticalAlignment="Center" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" IsChecked="{Binding openCcd,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged,Converter={StaticResource IntToBoolConverter}}" FontSize="24" HorizontalAlignment="Center"/>
  140. </Viewbox>
  141. </DataTemplate>
  142. </GridViewColumn.CellTemplate>
  143. </GridViewColumn>
  144. </GridView>
  145. </ListView.View>
  146. </ListView>
  147. <StackPanel Grid.Row="3" HorizontalAlignment="Right" Orientation="Horizontal">
  148. <!--<TextBox x:Name="_newValue_TextBox" Width="200" Text="5" FontSize="50" VerticalAlignment="Center" HorizontalContentAlignment="Center"/>
  149. <customControl:ButtonCornerRadius Content="设置" Click="SettCheck_Click" FontSize="24" Margin="20" Width="150" Height="100" CornerRadius="20" Background="#BFD87D" EnabledBackground="#bdbdbd" BorderThickness="0"/>-->
  150. <customControl:ButtonCornerRadius Content="{DynamicResource C0030}" Click="SaveHouse_Click" FontSize="24" Margin="20" Width="150" Height="100" CornerRadius="20" Background="#BFD87D" EnabledBackground="#bdbdbd" BorderThickness="0"/>
  151. </StackPanel>
  152. <TextBlock Grid.Row="4" Text="{DynamicResource C0195}" FontSize="24" FontWeight="SemiBold" Margin="5"/>
  153. <StackPanel Grid.Row="5" Margin="50">
  154. <StackPanel Orientation="Horizontal">
  155. <TextBlock FontSize="24" Text="{DynamicResource C0196}" />
  156. <TextBlock FontSize="24" Text="{DynamicResource C0197}" Margin="40 0 0 0"/>
  157. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.diskMinSpace}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  158. </StackPanel>
  159. <Rectangle Fill="#d7d7d7" Margin="0 50 0 50" Height="2"/>
  160. <StackPanel Orientation="Horizontal">
  161. <TextBlock FontSize="24" Text="{DynamicResource C0198}"/>
  162. <!--<TextBlock FontSize="24" Text="缓冲瓶压力上限值" Margin="50 0 0 0"/>
  163. <TextBox Text="{Binding TLSettingModel.bufferBottlerPressureMax}" FontSize="24" Width="100" Margin="20 0 0 0"/>-->
  164. <TextBlock FontSize="24" Text="{DynamicResource C0199}" Margin="50 0 0 0"/>
  165. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.bufferBottlerPressureMin}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  166. </StackPanel>
  167. <Rectangle Fill="#d7d7d7" Margin="0 50 0 50" Height="2"/>
  168. <StackPanel Orientation="Horizontal">
  169. <TextBlock FontSize="24" Text="{DynamicResource C0200}"/>
  170. <TextBlock FontSize="24" Text="{DynamicResource C0201}" Margin="50 0 0 0"/>
  171. <TextBox x:Name="TextBox_pressureAlarmMax" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.pressureAlarmMax}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  172. <TextBlock FontSize="24" Text="{DynamicResource C0202}" Margin="50 0 0 0"/>
  173. <TextBox x:Name="TextBox_pressureAlarmMin" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.pressureAlarmMin}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  174. </StackPanel>
  175. <Rectangle Fill="#d7d7d7" Margin="0 50 0 50" Height="2"/>
  176. <StackPanel Orientation="Horizontal">
  177. <TextBlock FontSize="24" Text="{DynamicResource C0203}"/>
  178. <TextBlock FontSize="24" Text="{DynamicResource C0204}" Margin="50 0 0 0"/>
  179. <TextBox x:Name="TextBox_temperatureAlarmMax" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.temperatureAlarmMax}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  180. <TextBlock FontSize="24" Text="{DynamicResource C0205}" Margin="50 0 0 0"/>
  181. <TextBox x:Name="TextBox_temperatureAlarmMin" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.temperatureAlarmMin}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  182. </StackPanel>
  183. <Rectangle Fill="#d7d7d7" Margin="0 50 0 50" Height="2"/>
  184. <StackPanel Orientation="Horizontal">
  185. <TextBlock FontSize="24" Text="{DynamicResource C0206}" TextAlignment="Right"/>
  186. <StackPanel>
  187. <StackPanel Orientation="Horizontal">
  188. <TextBlock FontSize="24" Text="{DynamicResource C0207}" Margin="50 0 0 0"/>
  189. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.bufferBottlerAerationNum}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  190. <TextBlock FontSize="24" Text="{DynamicResource C0208}" Margin="50 0 0 0"/>
  191. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.valueDelay}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  192. </StackPanel>
  193. <StackPanel Margin="0 25 0 0" Orientation="Horizontal">
  194. <TextBlock FontSize="24" Text="{DynamicResource C0209}" Margin="50 0 0 0"/>
  195. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.airSwapFrequency}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  196. <TextBlock FontSize="24" Text="{DynamicResource C0210}" Margin="50 0 0 0"/>
  197. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.ventilationDelay}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  198. </StackPanel>
  199. <StackPanel Margin="0 25 0 0" Orientation="Horizontal">
  200. <TextBlock Width="168" TextAlignment="Right" FontSize="24" Text="{DynamicResource C0211}" Margin="50 0 0 0"/>
  201. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.airSwapTime}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  202. <TextBlock FontSize="24" Text="{DynamicResource C0212}" Margin="50 0 0 0"/>
  203. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.houseAerationNum}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  204. </StackPanel>
  205. <StackPanel Margin="0 25 0 0" Orientation="Horizontal">
  206. <TextBlock FontSize="24" Text="{DynamicResource C0213}" Margin="50 0 0 0"/>
  207. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.aerationDelay}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  208. <!--<TextBlock FontSize="24" Text="缓冲瓶补气次数" Margin="50 0 0 0"/>
  209. <TextBox Text="{Binding TLSettingModel.bufferBottlerAerationNum}" FontSize="24" Width="100" Margin="20 0 0 0"/>-->
  210. </StackPanel>
  211. </StackPanel>
  212. </StackPanel>
  213. <Rectangle Fill="#d7d7d7" Margin="0 50 0 50" Height="2"/>
  214. <StackPanel Orientation="Horizontal">
  215. <TextBlock FontSize="24" Text="{DynamicResource C0214}" TextAlignment="Right"/>
  216. <TextBlock FontSize="24" Text="{DynamicResource C0215}" Margin="50 0 0 0" TextAlignment="Right"/>
  217. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.motorDelay}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  218. <TextBlock FontSize="24" Text="{DynamicResource C0216}" Margin="50 0 0 0"/>
  219. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.verticalMotorPulseMax}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  220. </StackPanel>
  221. <Rectangle Fill="#d7d7d7" Margin="0 50 0 50" Height="2"/>
  222. <StackPanel Orientation="Horizontal">
  223. <TextBlock FontSize="24" Text="{DynamicResource C0217}" TextAlignment="Right"/>
  224. <Viewbox Height="30" Margin="50 0 0 0">
  225. <CheckBox Content="{DynamicResource C0218}" IsChecked="{Binding TLSettingModel.saveSourcePicture,Converter={StaticResource IntToBoolConverter}}"/>
  226. </Viewbox>
  227. <Viewbox Height="30" Margin="50 0 0 0">
  228. <CheckBox Content="{DynamicResource C0219}" IsChecked="{Binding TLSettingModel.saveTargetPicture,Converter={StaticResource IntToBoolConverter}}"/>
  229. </Viewbox>
  230. <Viewbox Height="30" Margin="50 0 0 0">
  231. <CheckBox Content="{DynamicResource C0220}" IsChecked="{Binding TLSettingModel.compositeVideo,Converter={StaticResource IntToBoolConverter}}"/>
  232. </Viewbox>
  233. </StackPanel>
  234. <Rectangle Fill="#d7d7d7" Margin="0 50 0 50" Height="2"/>
  235. <StackPanel Orientation="Horizontal">
  236. <TextBlock FontSize="24" Text="{DynamicResource C0221}" Width="192" TextAlignment="Right"/>
  237. <TextBlock FontSize="24" Text="{DynamicResource C0222}" Margin="50 0 0 0" TextAlignment="Right"/>
  238. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.photoIntervalPerRound}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  239. <!--<Viewbox Height="30" Margin="50 0 0 0">
  240. <CheckBox Content="是否拍照" IsChecked="{Binding TLSettingModel.compositeVideo,Converter={StaticResource IntToBoolConverter}}"/>
  241. </Viewbox>-->
  242. </StackPanel>
  243. <Rectangle Fill="#d7d7d7" Margin="0 50 0 50" Height="2"/>
  244. <StackPanel Orientation="Horizontal">
  245. <TextBlock FontSize="24" Text="{DynamicResource C0223}" TextAlignment="Right"/>
  246. <StackPanel >
  247. <StackPanel Orientation="Horizontal">
  248. <TextBlock FontSize="24" Text="{DynamicResource C0224}" Margin="50 0 0 0" TextAlignment="Right"/>
  249. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.mattingAlarmTimes}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  250. <TextBlock FontSize="24" Text="{DynamicResource C0225}" Margin="50 0 0 0" TextAlignment="Right"/>
  251. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.houseDoorAlarmTime}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  252. </StackPanel>
  253. <StackPanel Orientation="Horizontal" Margin="0 25 0 0">
  254. <TextBlock FontSize="24" Text="{DynamicResource C0226}" Margin="50 0 0 0" TextAlignment="Right"/>
  255. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.temperatureAlarmTime}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  256. <TextBlock TextAlignment="Right" FontSize="24" Text="{DynamicResource C0227}" Margin="50 0 0 0"/>
  257. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.pressureAlarmTime}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  258. </StackPanel>
  259. </StackPanel>
  260. </StackPanel>
  261. <Rectangle Fill="#d7d7d7" Margin="0 50 0 50" Height="2"/>
  262. <StackPanel Orientation="Horizontal">
  263. <TextBlock FontSize="24" Text="{DynamicResource C0237}" TextAlignment="Right"/>
  264. <StackPanel>
  265. <StackPanel Orientation="Horizontal">
  266. <TextBlock FontSize="24" Text="{DynamicResource C0238}" Margin="50 0 0 0" TextAlignment="Right"/>
  267. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.cleanAutofocusData}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  268. <TextBlock FontSize="24" Text="{DynamicResource C0239}" Margin="50 0 0 0"/>
  269. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.cleanSourceData}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  270. </StackPanel >
  271. <StackPanel Orientation="Horizontal" Margin="0 25 0 0">
  272. <TextBlock FontSize="24" Text="{DynamicResource C0240}" Margin="50 0 0 0"/>
  273. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.cleanControlData}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  274. <TextBlock FontSize="24" Text="{DynamicResource C0241}" Margin="50 0 0 0"/>
  275. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.cleanSurfaceData}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  276. </StackPanel>
  277. </StackPanel>
  278. </StackPanel>
  279. <Rectangle Fill="#d7d7d7" Margin="0 50 0 50" Height="2"/>
  280. <StackPanel Orientation="Horizontal">
  281. <TextBlock FontSize="24" Text="{DynamicResource C0323}" TextAlignment="Right"/>
  282. <TextBlock FontSize="24" Text="{DynamicResource C0324}" Margin="50 0 0 0" TextAlignment="Right"/>
  283. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.operableEmbryoTime}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  284. </StackPanel>
  285. <!--<StackPanel Orientation="Horizontal" Margin="0 25 0 0">
  286. <TextBlock FontSize="24" Text="PC操作软件/天" Margin="242 0 0 0"/>
  287. <TextBox PreviewTextInput="TextBox_PreviewTextInput" InputMethod.IsInputMethodEnabled="False" Text="{Binding TLSettingModel.cleanPcData}" FontSize="24" Width="100" Margin="20 0 0 0"/>
  288. </StackPanel>-->
  289. </StackPanel>
  290. <StackPanel Grid.Row="6" Orientation="Horizontal" >
  291. <customControl:ButtonCornerRadius Content="{DynamicResource C0030}" Click="SaveSetting_Click" FontSize="24" Margin="20" Width="150" Height="100" CornerRadius="20" Background="#BFD87D" EnabledBackground="#bdbdbd" BorderThickness="0"/>
  292. </StackPanel>
  293. </Grid>
  294. </UserControl>