mirror of
https://github.com/Raphire/Win11Debloat.git
synced 2026-06-17 15:28:17 +00:00
142 lines
6.2 KiB
XML
142 lines
6.2 KiB
XML
<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"
|
|
WindowStartupLocation="CenterOwner"
|
|
WindowStyle="None"
|
|
AllowsTransparency="True"
|
|
Background="Transparent"
|
|
Topmost="False"
|
|
ShowInTaskbar="False">
|
|
|
|
<Border Style="{DynamicResource ModalCardBorderStyle}">
|
|
|
|
<Grid Margin="0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Title Bar -->
|
|
<Grid Grid.Row="0" x:Name="TitleBar" Style="{DynamicResource ModalTitleBarStyle}">
|
|
<TextBlock Text="About Win11Debloat"
|
|
Style="{DynamicResource ModalTitleTextStyle}"/>
|
|
</Grid>
|
|
|
|
<!-- Message Content -->
|
|
<Grid Grid.Row="1">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Message Text -->
|
|
<Grid Grid.Row="0" Margin="20,4,20,16">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Version -->
|
|
<TextBlock Grid.Row="0" Grid.Column="0"
|
|
Text="Version:"
|
|
Style="{DynamicResource ModalInfoLabelTextStyle}"/>
|
|
<TextBlock x:Name="VersionText"
|
|
Grid.Row="0" Grid.Column="1"
|
|
Text="0.0.0"
|
|
Style="{DynamicResource ModalInfoValueTextStyle}"/>
|
|
|
|
<!-- Author -->
|
|
<TextBlock Grid.Row="1" Grid.Column="0"
|
|
Text="Author:"
|
|
Style="{DynamicResource ModalInfoLabelTextStyle}"/>
|
|
<TextBlock Grid.Row="1" Grid.Column="1"
|
|
Text="Raphire"
|
|
Style="{DynamicResource ModalInfoValueTextStyle}"/>
|
|
|
|
<!-- Project Link -->
|
|
<TextBlock Grid.Row="2" Grid.Column="0"
|
|
Text="Project:"
|
|
Style="{DynamicResource ModalInfoLabelTextStyle}"
|
|
Margin="0,0,16,0"/>
|
|
<TextBlock x:Name="ProjectLink"
|
|
Grid.Row="2" Grid.Column="1"
|
|
Text="https://github.com/Raphire/Win11Debloat"
|
|
FontSize="13"
|
|
Style="{DynamicResource HyperlinkStyle}"
|
|
Margin="0,0,0,0"/>
|
|
</Grid>
|
|
|
|
<!-- Separator -->
|
|
<Border Grid.Row="1"
|
|
Height="1"
|
|
Background="{DynamicResource BorderColor}"
|
|
Margin="20,0"/>
|
|
|
|
<!-- Content -->
|
|
<StackPanel Grid.Row="2" Margin="20,16,20,16">
|
|
<!-- Donation Message -->
|
|
<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!"
|
|
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"
|
|
FontSize="16"
|
|
Style="{DynamicResource HyperlinkStyle}"
|
|
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"
|
|
FontSize="16"
|
|
Style="{DynamicResource HyperlinkStyle}"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
FontWeight="SemiBold"
|
|
Text="Support me on Ko-fi"/>
|
|
</Grid>
|
|
</StackPanel>
|
|
</Grid>
|
|
|
|
<!-- Button Panel -->
|
|
<Border Grid.Row="2" Style="{DynamicResource ModalFooterBorderStyle}">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Button x:Name="CloseButton"
|
|
Grid.Column="1"
|
|
Content="Close"
|
|
Style="{DynamicResource ModalSecondaryStretchedButtonStyle}"/>
|
|
</Grid>
|
|
</Border>
|
|
</Grid>
|
|
</Border>
|
|
</Window>
|