|
| 1 | +<Window xmlns="https://github.com/avaloniaui" |
| 2 | + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 3 | + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| 4 | + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| 5 | + mc:Ignorable="d" d:DesignWidth="500" d:DesignHeight="400" |
| 6 | + x:Class="ChapterTool.Avalonia.Views.AboutWindow" |
| 7 | + Title="About ChapterTool" |
| 8 | + Width="500" Height="400" |
| 9 | + CanResize="False" |
| 10 | + WindowStartupLocation="CenterOwner" |
| 11 | + Icon="/Assets/icon.ico"> |
| 12 | + |
| 13 | + <Border Padding="20"> |
| 14 | + <StackPanel Spacing="16"> |
| 15 | + <!-- App Icon --> |
| 16 | + <Border Width="80" Height="80" HorizontalAlignment="Center"> |
| 17 | + <Image Source="/Assets/icon.ico" /> |
| 18 | + </Border> |
| 19 | + |
| 20 | + <!-- App Name and Version --> |
| 21 | + <StackPanel Spacing="4" HorizontalAlignment="Center"> |
| 22 | + <TextBlock Text="ChapterTool" |
| 23 | + FontSize="24" |
| 24 | + FontWeight="Bold" |
| 25 | + HorizontalAlignment="Center"/> |
| 26 | + <TextBlock Text="Modern Cross-Platform Edition" |
| 27 | + FontSize="14" |
| 28 | + Foreground="#666666" |
| 29 | + HorizontalAlignment="Center"/> |
| 30 | + <TextBlock Text="Version 2.0.0" |
| 31 | + FontSize="12" |
| 32 | + Foreground="#888888" |
| 33 | + HorizontalAlignment="Center"/> |
| 34 | + </StackPanel> |
| 35 | + |
| 36 | + <!-- Description --> |
| 37 | + <TextBlock Text="A modern tool for extracting and editing chapters from various media formats" |
| 38 | + TextWrapping="Wrap" |
| 39 | + HorizontalAlignment="Center" |
| 40 | + TextAlignment="Center" |
| 41 | + MaxWidth="400" |
| 42 | + Foreground="#555555"/> |
| 43 | + |
| 44 | + <Separator/> |
| 45 | + |
| 46 | + <!-- Technology Stack --> |
| 47 | + <StackPanel Spacing="8"> |
| 48 | + <TextBlock Text="Technology Stack:" FontWeight="Bold" Foreground="#333333"/> |
| 49 | + <StackPanel Spacing="4" Margin="16,0,0,0"> |
| 50 | + <TextBlock Text="• .NET 8.0" Foreground="#555555"/> |
| 51 | + <TextBlock Text="• Avalonia UI 11.3.6" Foreground="#555555"/> |
| 52 | + <TextBlock Text="• MVVM Toolkit 8.2.1" Foreground="#555555"/> |
| 53 | + </StackPanel> |
| 54 | + </StackPanel> |
| 55 | + |
| 56 | + <Separator/> |
| 57 | + |
| 58 | + <!-- Supported Formats --> |
| 59 | + <StackPanel Spacing="8"> |
| 60 | + <TextBlock Text="Supported Formats:" FontWeight="Bold" Foreground="#333333"/> |
| 61 | + <TextBlock Text="MPLS, XML, OGM, IFO, Matroska, CUE, FLAC, TAK, XPL, MP4, WebVTT" |
| 62 | + TextWrapping="Wrap" |
| 63 | + Margin="16,0,0,0" |
| 64 | + Foreground="#555555"/> |
| 65 | + </StackPanel> |
| 66 | + |
| 67 | + <Separator/> |
| 68 | + |
| 69 | + <!-- Copyright --> |
| 70 | + <StackPanel Spacing="4"> |
| 71 | + <TextBlock Text="© 2014-2025 TautCony" |
| 72 | + HorizontalAlignment="Center" |
| 73 | + Foreground="#888888" |
| 74 | + FontSize="11"/> |
| 75 | + <TextBlock Text="Licensed under GPL v3+" |
| 76 | + HorizontalAlignment="Center" |
| 77 | + Foreground="#888888" |
| 78 | + FontSize="11"/> |
| 79 | + </StackPanel> |
| 80 | + |
| 81 | + <!-- Close Button --> |
| 82 | + <Button Content="Close" |
| 83 | + HorizontalAlignment="Center" |
| 84 | + MinWidth="100" |
| 85 | + Click="CloseButton_Click" |
| 86 | + Margin="0,8,0,0"/> |
| 87 | + </StackPanel> |
| 88 | + </Border> |
| 89 | +</Window> |
0 commit comments