1
0
Files
BallanceTasToolbox/BallanceTasEditor/Views/AboutDialog.xaml

39 lines
1.9 KiB
Plaintext
Raw Normal View History

2025-11-16 15:44:14 +08:00
<Window x:Class="BallanceTasEditor.Views.AboutDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:BallanceTasEditor.Views"
mc:Ignorable="d" WindowStartupLocation="CenterOwner" WindowStyle="ToolWindow"
2025-11-17 10:42:50 +08:00
Title="About Ballance TAS Editor" Width="340" Height="480" Icon="/Assets/About.ico">
2025-11-16 15:44:14 +08:00
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="auto"/>
</Grid.RowDefinitions>
<!-- 图标 -->
<Image Source="/Assets/App.ico" Grid.Row="0" Margin="10" HorizontalAlignment="Center"
Width="64" Height="64" RenderOptions.BitmapScalingMode="HighQuality"/>
2025-11-16 15:44:14 +08:00
<!-- 应用名称和简介 -->
<TextBlock Grid.Row="1" Text="Ballance TAS Editor" FontSize="20" FontWeight="Bold" HorizontalAlignment="Center" Margin="10" />
<TextBlock Grid.Row="2" Text="Stable, Robust and Free TAS Editor" TextAlignment="Center" Margin="10" />
<!-- 详情(版权信息等) -->
<TextBox Grid.Row="3" IsReadOnly="True" TextWrapping="Wrap" Margin="10"
ScrollViewer.VerticalScrollBarVisibility="Visible" ScrollViewer.HorizontalScrollBarVisibility="Disabled"
Text="Copyright © 2021-2025 yyc12345. All rights reserved.&#13;
&#13;
Program: yyc12345 &#13;
Icon design: plAer_2 &#13;
&#13;
Version: 1.2 stable&#13;
Build Date: October 21, 2025&#13;"/>
<!-- 确认按钮 -->
2025-11-17 10:42:50 +08:00
<Button Grid.Row="4" Content="OK" IsDefault="True" Margin="10" Padding="5" MinWidth="80" HorizontalAlignment="Center"/>
2025-11-16 15:44:14 +08:00
</Grid>
</Window>