2026-02-15 16:53:41 +01:00
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="About Win11Debloat"
Width="500"
SizeToContent="Height"
ResizeMode="NoResize"
2026-03-07 14:49:29 +01:00
WindowStartupLocation="CenterOwner"
2026-02-15 16:53:41 +01:00
WindowStyle="None"
AllowsTransparency="True"
Background="Transparent"
2026-03-27 20:33:24 +01:00
Topmost="False"
2026-02-15 16:53:41 +01:00
ShowInTaskbar="False">
2026-05-08 21:19:52 +02:00
<Border Style="{DynamicResource ModalCardBorderStyle}">
2026-02-15 16:53:41 +01:00
<Grid Margin="0">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<!-- Title Bar -->
2026-05-08 21:19:52 +02:00
<Grid Grid.Row="0" x:Name="TitleBar" Style="{DynamicResource ModalTitleBarStyle}">
2026-02-15 16:53:41 +01:00
<TextBlock Text="About Win11Debloat"
2026-05-08 21:19:52 +02:00
Style="{DynamicResource ModalTitleTextStyle}"/>
2026-02-15 16:53:41 +01:00
</Grid>
<!-- Message Content -->
<Grid Grid.Row="1">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<!-- Message Text -->
2026-05-08 21:19:52 +02:00
<Grid Grid.Row="0" Margin="20,4,20,20">
2026-02-15 16:53:41 +01:00
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<!-- Version -->
2026-05-08 21:19:52 +02:00
<TextBlock Grid.Row="0" Grid.Column="0"
Text="Version:"
Style="{DynamicResource ModalInfoLabelTextStyle}"/>
2026-02-15 16:53:41 +01:00
<TextBlock x:Name="VersionText"
Grid.Row="0" Grid.Column="1"
2026-05-08 21:19:52 +02:00
Text="0.0.0"
Style="{DynamicResource ModalInfoValueTextStyle}"/>
2026-02-15 16:53:41 +01:00
<!-- Author -->
2026-05-08 21:19:52 +02:00
<TextBlock Grid.Row="1" Grid.Column="0"
Text="Author:"
Style="{DynamicResource ModalInfoLabelTextStyle}"/>
2026-02-15 16:53:41 +01:00
<TextBlock Grid.Row="1" Grid.Column="1"
2026-05-08 21:19:52 +02:00
Text="Raphire"
Style="{DynamicResource ModalInfoValueTextStyle}"/>
2026-02-15 16:53:41 +01:00
<!-- Project Link -->
2026-05-08 21:19:52 +02:00
<TextBlock Grid.Row="2" Grid.Column="0"
Text="Project:"
Style="{DynamicResource ModalInfoLabelTextStyle}"
2026-02-15 16:53:41 +01:00
Margin="0,0,16,0"/>
<TextBlock x:Name="ProjectLink"
Grid.Row="2" Grid.Column="1"
Text="https://github.com/Raphire/Win11Debloat"
2026-05-08 21:19:52 +02:00
FontSize="13"
2026-03-07 14:49:29 +01:00
Style="{DynamicResource HyperlinkStyle}"
2026-02-15 16:53:41 +01:00
Margin="0,0,0,0"/>
</Grid>
<!-- Separator -->
<Border Grid.Row="1"
Height="1"
Background="{DynamicResource BorderColor}"
2026-05-08 21:19:52 +02:00
Margin="20,0"/>
2026-02-15 16:53:41 +01:00
<!-- Content -->
2026-05-08 21:19:52 +02:00
<StackPanel Grid.Row="2" Margin="20,18,20,20">
2026-02-15 16:53:41 +01:00
<!-- Donation Message -->
2026-02-15 23:08:54 +01:00
<TextBlock Text="Win11Debloat is a passion project that I maintain in my free time. If you've found this tool useful, please consider making a small donation to support its development. I really appreciate it!"
2026-02-15 16:53:41 +01:00
FontSize="14"
Foreground="{DynamicResource FgColor}"
TextWrapping="Wrap"
Margin="0,0,0,15"/>
<!-- Ko-fi Link -->
<Grid HorizontalAlignment="Left">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBlock x:Name="KofiLinkIcon"
Grid.Column="0"
2026-02-15 23:08:54 +01:00
FontSize="16"
2026-03-07 14:49:29 +01:00
Style="{DynamicResource HyperlinkStyle}"
2026-02-15 16:53:41 +01:00
HorizontalAlignment="Center"
VerticalAlignment="Center"
FontWeight="SemiBold"
FontFamily="Segoe Fluent Icons"
Text=""
Foreground="{DynamicResource CloseHover}"
Margin="0,0,8,0"/>
<TextBlock x:Name="KofiLink"
Grid.Column="1"
2026-02-15 23:08:54 +01:00
FontSize="16"
2026-03-07 14:49:29 +01:00
Style="{DynamicResource HyperlinkStyle}"
2026-02-15 16:53:41 +01:00
HorizontalAlignment="Center"
VerticalAlignment="Center"
FontWeight="SemiBold"
2026-02-15 23:08:54 +01:00
Text="Support me on Ko-fi"/>
2026-02-15 16:53:41 +01:00
</Grid>
</StackPanel>
</Grid>
<!-- Button Panel -->
2026-05-08 21:19:52 +02:00
<Border Grid.Row="2" Style="{DynamicResource ModalFooterBorderStyle}">
<StackPanel x:Name="ButtonPanel" Style="{DynamicResource ModalFooterButtonsRightStyle}">
2026-02-15 16:53:41 +01:00
<Button x:Name="CloseButton"
Content="Close"
2026-05-08 21:19:52 +02:00
Style="{DynamicResource ModalSecondaryActionButtonStyle}"/>
2026-02-15 16:53:41 +01:00
</StackPanel>
</Border>
</Grid>
</Border>
</Window>