feat: 管理器支持深浅主题切换,发布 exe

- 新增 LightTheme.xaml 浅色主题资源
- 标题栏添加主题切换按钮(☀️/🌙)
- Manager 支持深浅主题互换
- 发布 Manager.exe (292KB) 和 Installer.exe (171KB)
- 插件安装包 Better-Seewo.2.0.0.exe (11.6MB)
This commit is contained in:
雾启工作室
2026-06-28 12:43:17 +08:00
parent fb7b924c0d
commit 65d61b44d9
12 changed files with 432 additions and 3 deletions

View File

@@ -57,7 +57,12 @@
<TextBlock Text="Better-Seewo" FontSize="18" FontWeight="SemiBold" Foreground="{StaticResource AccentBrush}" VerticalAlignment="Center"/>
<TextBlock Text=" 管理器" FontSize="14" Foreground="{StaticResource TextSecondaryBrush}" VerticalAlignment="Center" Margin="8,0,0,0"/>
</StackPanel>
<TextBlock Text="v2.0.0" FontSize="11" Foreground="{StaticResource TextSecondaryBrush}" HorizontalAlignment="Right" VerticalAlignment="Center"/>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Center">
<TextBlock Text="v2.0.0" FontSize="11" Foreground="{StaticResource TextSecondaryBrush}" VerticalAlignment="Center" Margin="0,0,12,0"/>
<Button x:Name="BtnThemeToggle" Content="🌙" Width="28" Height="28" FontSize="14"
Background="Transparent" Foreground="{StaticResource TextPrimaryBrush}" BorderThickness="0"
Cursor="Hand" Click="BtnThemeToggle_Click"/>
</StackPanel>
</Grid>
</Border>