75 lines
3.0 KiB
Plaintext
75 lines
3.0 KiB
Plaintext
|
|
<Page x:Class="头罩视野.Views.Help"
|
|||
|
|
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:头罩视野.Views"
|
|||
|
|
mc:Ignorable="d"
|
|||
|
|
d:DesignHeight="768" d:DesignWidth="1024"
|
|||
|
|
Background="#F0E6FA"
|
|||
|
|
Title="Help">
|
|||
|
|
|
|||
|
|
<Grid>
|
|||
|
|
|
|||
|
|
<Grid.RowDefinitions>
|
|||
|
|
<RowDefinition Height="Auto"/>
|
|||
|
|
<RowDefinition Height="*"/>
|
|||
|
|
</Grid.RowDefinitions>
|
|||
|
|
|
|||
|
|
<!-- 左上角"帮助"标题 -->
|
|||
|
|
<TextBlock Text="帮助"
|
|||
|
|
FontSize="32"
|
|||
|
|
FontWeight="Bold"
|
|||
|
|
Margin="20,10,0,0"
|
|||
|
|
HorizontalAlignment="Left"
|
|||
|
|
VerticalAlignment="Top"/>
|
|||
|
|
|
|||
|
|
<!-- 主内容区 -->
|
|||
|
|
<StackPanel Grid.Row="1"
|
|||
|
|
VerticalAlignment="Center"
|
|||
|
|
HorizontalAlignment="Center">
|
|||
|
|
<!-- 第一行:上海程斯,服务全球 -->
|
|||
|
|
<Border BorderBrush="White"
|
|||
|
|
BorderThickness="2"
|
|||
|
|
CornerRadius="4"
|
|||
|
|
Background="Transparent"
|
|||
|
|
Margin="0,0,0,40"
|
|||
|
|
Padding="30,15,30,15">
|
|||
|
|
<TextBlock Text="上海程斯,服务全球"
|
|||
|
|
FontSize="40"
|
|||
|
|
FontWeight="Bold"
|
|||
|
|
HorizontalAlignment="Center"
|
|||
|
|
VerticalAlignment="Center"/>
|
|||
|
|
</Border>
|
|||
|
|
|
|||
|
|
<!-- 第二行:公司信息 -->
|
|||
|
|
<Border BorderBrush="White"
|
|||
|
|
BorderThickness="2"
|
|||
|
|
CornerRadius="4"
|
|||
|
|
Background="Transparent"
|
|||
|
|
Margin="0,0,0,60"
|
|||
|
|
Padding="30,20,30,20">
|
|||
|
|
<StackPanel HorizontalAlignment="Center">
|
|||
|
|
<TextBlock Text="总公司:美国CSI----Sincerity"
|
|||
|
|
FontSize="26"
|
|||
|
|
Margin="0,0,0,8"
|
|||
|
|
HorizontalAlignment="Center"/>
|
|||
|
|
<TextBlock Text="上海分公司:上海程斯智能科技(美国)有限公司"
|
|||
|
|
FontSize="26"
|
|||
|
|
Margin="0,0,0,8"
|
|||
|
|
HorizontalAlignment="Center"/>
|
|||
|
|
<TextBlock Text="联系方式:19821311892"
|
|||
|
|
FontSize="26"
|
|||
|
|
HorizontalAlignment="Center"/>
|
|||
|
|
</StackPanel>
|
|||
|
|
</Border>
|
|||
|
|
|
|||
|
|
<!-- 第三行:网址 -->
|
|||
|
|
<TextBlock Text="http://www.csizhineng.com"
|
|||
|
|
FontSize="30"
|
|||
|
|
HorizontalAlignment="Center"
|
|||
|
|
VerticalAlignment="Center"/>
|
|||
|
|
</StackPanel>
|
|||
|
|
</Grid>
|
|||
|
|
</Page>
|