| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <UserControl x:Class="ivf_tl_Operate.View.AboutView"
- 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:ivf_tl_Operate.View"
- mc:Ignorable="d"
- d:DesignHeight="2736" d:DesignWidth="1824"
- xmlns:customControl="clr-namespace:ivf_tl_CustomControls;assembly=ivf_tl_CustomControls_Surface">
- <Grid Background="White">
- <Grid.RowDefinitions>
- <RowDefinition Height="250"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid Grid.Row="0" Background="{StaticResource BannerTopFill}">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="350"/>
- <ColumnDefinition Width="1"/>
- <ColumnDefinition Width="1"/>
- <ColumnDefinition/>
- <ColumnDefinition Width="414"/>
- </Grid.ColumnDefinitions>
- <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"/>
- <Border Grid.Column="1" Background="#FFFFFF"/>
- <Border Grid.Column="2" Background="#DFE0E4"/>
- <TextBlock Grid.Column="3" Text="{DynamicResource C0042}" FontSize="60" VerticalAlignment="Center" HorizontalAlignment="Center"/>
- </Grid>
- <StackPanel Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Center">
- <Image Width="800" Height="509" Source="/Resources/Image/TL.png" />
- <StackPanel Orientation="Horizontal" Margin="50 200 50 50">
- <TextBlock Text="{DynamicResource C0144}" TextAlignment="Right" FontSize="60" FontWeight="Bold" />
- <TextBlock FontSize="60" FontWeight="Bold" Text="NEO-1"/>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="50 50 50 50">
- <TextBlock Text="{DynamicResource C0145}" TextAlignment="Right" FontSize="60" FontWeight="Bold" />
- <TextBlock x:Name="_tlNum_TextBlock" FontSize="60" FontWeight="Bold" Text="20230101"/>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="50 50 50 50">
- <TextBlock Text="{DynamicResource C0146}" TextAlignment="Right" FontSize="60" FontWeight="Bold" />
- <TextBlock x:Name="t1" FontSize="60" FontWeight="Bold" Text="V2.0.0.0"/>
- </StackPanel>
- <StackPanel Orientation="Horizontal" Margin="50 50 50 50">
- <TextBlock Text="{DynamicResource C0147}" TextAlignment="Right" FontSize="60" FontWeight="Bold" />
- <TextBlock x:Name="t2" FontSize="60" FontWeight="Bold" Text="V2.0.0.0"/>
- </StackPanel>
- </StackPanel>
- </Grid>
- </UserControl>
|