AboutControl.xaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <UserControl x:Class="GeekDesk.Control.UserControls.Config.AboutControl"
  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:GeekDesk.Control.UserControls.PannelCard"
  7. xmlns:hc="https://handyorg.github.io/handycontrol"
  8. mc:Ignorable="d"
  9. Background="AliceBlue"
  10. d:DesignHeight="400" d:DesignWidth="500">
  11. <UserControl.Resources>
  12. </UserControl.Resources>
  13. <hc:SimplePanel Margin="20,50,20,20">
  14. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Top">
  15. <Image Source="/Resource/Image/About.png" Width="400" Height="100"/>
  16. <TextBlock TextAlignment="Center" Text="Copyright © 2021 GeekDesk 1.0 beta"/>
  17. <WrapPanel Margin="0,10,0,0" VerticalAlignment="Center" HorizontalAlignment="Center">
  18. <hc:Shield Subject=".net" Status=">=4.72" Margin="0,0,10,0" Color="#1182c3"/>
  19. <hc:Shield Subject="IDE" Status="VS2019" Margin="0,0,10,0" Color="#1182c3"/>
  20. <hc:Shield Subject="公众号" Status="抓几个娃" Color="#04913B">
  21. <hc:Poptip.Instance>
  22. <hc:Poptip PlacementType="Top">
  23. <hc:Poptip.Content>
  24. <Image Source="/Resource/Image/公众号.jpg" Width="150" Height="150" />
  25. </hc:Poptip.Content>
  26. </hc:Poptip>
  27. </hc:Poptip.Instance>
  28. </hc:Shield>
  29. </WrapPanel>
  30. <TextBlock Margin="0,20,0,0" FontSize="13" Width="200" TextAlignment="Center" Text="这是个人开发的程序,所有人可任意修改和免费使用(商用请联系作者)" TextWrapping="Wrap"/>
  31. </StackPanel>
  32. </hc:SimplePanel>
  33. </UserControl>