AboutWindow.xaml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Window x:Class="MV485.Dlg.AboutWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:MV485.Dlg"
  7. mc:Ignorable="d"
  8. WindowStartupLocation="CenterOwner"
  9. ShowInTaskbar="False"
  10. ResizeMode="NoResize"
  11. Icon="pack://application:,,,/MV485;component/Assest/about_2.png"
  12. Title="关于" Height="250" Width="400">
  13. <Grid>
  14. <Grid>
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="*" />
  17. <RowDefinition Height="40" />
  18. </Grid.RowDefinitions>
  19. <StackPanel Grid.Row="0" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="10">
  20. <!-- 应用程序名称 -->
  21. <TextBlock x:Name="AppNameTextBlock" FontSize="16" FontWeight="Bold" HorizontalAlignment="Center" Margin="0,10"/>
  22. <!-- 版本号 -->
  23. <TextBlock x:Name="VersionTextBlock" FontSize="14" HorizontalAlignment="Center" Margin="0,10"/>
  24. <!-- 版权信息 -->
  25. <TextBlock x:Name="CopyrightTextBlock" FontSize="14" LineHeight="25"
  26. HorizontalAlignment="Center" Margin="0,10" TextWrapping="Wrap" TextAlignment="Center"/>
  27. <!-- 开发者信息 -->
  28. <!--<TextBlock x:Name="DeveloperTextBlock" FontSize="13" HorizontalAlignment="Center" Margin="0,5"/>-->
  29. </StackPanel>
  30. <StackPanel Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Center" >
  31. <!-- 关闭按钮 -->
  32. <Button Content="关闭" HorizontalAlignment="Center" VerticalAlignment="Bottom"
  33. Width="100" Height="30" FontSize="14"
  34. Margin="0" Click="CloseButton_Click"/>
  35. </StackPanel>
  36. </Grid>
  37. </Grid>
  38. </Window>