Help.xaml 2.2 KB

12345678910111213141516171819202122232425
  1. <Window x:Class="AGV_WPF.Help"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="Help" Height="330" Width="511" FontSize="16" WindowStartupLocation="CenterScreen" Icon="/AGV_WPF;component/Image/help_24.png" ResizeMode="NoResize">
  5. <Grid>
  6. <!--背景渐变-->
  7. <Grid.Background>
  8. <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0" MappingMode="RelativeToBoundingBox">
  9. <GradientStop Color="White"/>
  10. <GradientStop Color="White" Offset="1"/>
  11. <GradientStop Color="#FF3D95C8"/>
  12. </LinearGradientBrush>
  13. </Grid.Background>
  14. <Image Height="145" HorizontalAlignment="Left" Margin="12,60,0,0" Name="image1" Stretch="Fill" VerticalAlignment="Top" Width="144" Source="/AGV_WPF;component/Image/casun_logo.png" />
  15. <Label Content="产品名称:AGV中央管理系统" Height="36" HorizontalAlignment="Left" Margin="171,40,0,0" Name="label1" VerticalAlignment="Top" />
  16. <Label Content="版 本:AGV-Ver1.0.2" Height="28" HorizontalAlignment="Left" Margin="171,74,0,0" Name="label2" VerticalAlignment="Top" Width="275" />
  17. <Label Content="版 权:佳顺伟业(casun)保留所有版权 " Height="36" HorizontalAlignment="Left" Margin="171,108,0,0" Name="label3" VerticalAlignment="Top" />
  18. <Label Content="公司名称:" Height="45" HorizontalAlignment="Left" Margin="171,142,0,0" Name="label4" VerticalAlignment="Top" />
  19. <TextBlock VerticalAlignment="Top" Margin="249,147,16,0" Height="28">深圳市佳顺伟业科技有限公司</TextBlock>
  20. <Label Content="公司网址:" HorizontalAlignment="Left" Margin="171,176,0,70" Name="label5" />
  21. <TextBlock Height="28" Margin="249,181,16,0" VerticalAlignment="Top"><Hyperlink Click="hyperlinkCompany_Click" NavigateUri="http://www.casun.cn/">http://www.casun.cn</Hyperlink></TextBlock>
  22. <Label Content="服务热线:" Height="45" HorizontalAlignment="Left" Margin="171,210,0,0" VerticalAlignment="Top"/>
  23. <TextBlock Text="400-700-6846" Height="28" HorizontalAlignment="Left" Margin="249,216,0,0" VerticalAlignment="Top"/>
  24. </Grid>
  25. </Window>