Newer
Older
Correlator / PipeGallery / View / StartView.xaml
<UserControl
    x:Class="PipeGallery.View.StartView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    d:DesignHeight="300"
    d:DesignWidth="300"
    mc:Ignorable="d">
    <Grid>
        <Grid.Background>
            <ImageBrush ImageSource="/PipeGallery;component/Image/start_background.png" Stretch="UniformToFill" />
        </Grid.Background>
        <Viewbox>
            <Grid Width="1366" Height="768">
                <Image
                    Width="458"
                    Height="329"
                    Margin="0,155,0,0"
                    VerticalAlignment="Top"
                    Source="/PipeGallery;component/Image/start_icon2.png" />
                <TextBlock
                    Width="auto"
                    Height="auto"
                    Margin="0,0,0,195"
                    HorizontalAlignment="Center"
                    VerticalAlignment="Bottom"
                    FontSize="35"
                    Text="中国航天科工" />
            </Grid>
        </Viewbox>
    </Grid>
</UserControl>