AboutView.xaml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <UserControl x:Class="ivf_tl_Operate.View.AboutView"
  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. mc:Ignorable="d"
  8. d:DesignHeight="2736" d:DesignWidth="1824"
  9. xmlns:customControl="clr-namespace:ivf_tl_CustomControls;assembly=ivf_tl_CustomControls_Surface">
  10. <Grid Background="White">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="250"/>
  13. <RowDefinition/>
  14. </Grid.RowDefinitions>
  15. <Grid Grid.Row="0" Background="{StaticResource BannerTopFill}">
  16. <Grid.ColumnDefinitions>
  17. <ColumnDefinition Width="350"/>
  18. <ColumnDefinition Width="1"/>
  19. <ColumnDefinition Width="1"/>
  20. <ColumnDefinition/>
  21. <ColumnDefinition Width="414"/>
  22. </Grid.ColumnDefinitions>
  23. <customControl:ButtonLeftImage Grid.Column="0" Content="{DynamicResource C0044}" Click="Return_Click" Width="350" Height="250" 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"/>
  24. <Border Grid.Column="1" Background="#FFFFFF"/>
  25. <Border Grid.Column="2" Background="#DFE0E4"/>
  26. <TextBlock Grid.Column="3" Text="{DynamicResource C0042}" FontSize="60" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  27. </Grid>
  28. <StackPanel Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Center">
  29. <Image Width="800" Height="509" Source="/Resources/Image/TL.png" />
  30. <StackPanel Orientation="Horizontal" Margin="50 200 50 50">
  31. <TextBlock Text="{DynamicResource C0144}" TextAlignment="Right" FontSize="60" FontWeight="Bold" />
  32. <TextBlock FontSize="60" FontWeight="Bold" Text="NEO-1"/>
  33. </StackPanel>
  34. <StackPanel Orientation="Horizontal" Margin="50 50 50 50">
  35. <TextBlock Text="{DynamicResource C0145}" TextAlignment="Right" FontSize="60" FontWeight="Bold" />
  36. <TextBlock x:Name="_tlNum_TextBlock" FontSize="60" FontWeight="Bold" Text="20230101"/>
  37. </StackPanel>
  38. <StackPanel Orientation="Horizontal" Margin="50 50 50 50">
  39. <TextBlock Text="{DynamicResource C0146}" TextAlignment="Right" FontSize="60" FontWeight="Bold" />
  40. <TextBlock x:Name="t1" FontSize="60" FontWeight="Bold" Text="V2.0.0.0"/>
  41. </StackPanel>
  42. <StackPanel Orientation="Horizontal" Margin="50 50 50 50">
  43. <TextBlock Text="{DynamicResource C0147}" TextAlignment="Right" FontSize="60" FontWeight="Bold" />
  44. <TextBlock x:Name="t2" FontSize="60" FontWeight="Bold" Text="V2.0.0.0"/>
  45. </StackPanel>
  46. </StackPanel>
  47. </Grid>
  48. </UserControl>