AboutWindow.xaml 1.8 KB

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