feat: Better-Seewo v2.0.0 - 希沃白板功能增强插件

- Fluent Design 风格 UI,深色/浅色主题切换
- 平滑过渡动画(页面切换、按钮交互、状态变化)
- 五大核心功能:安装管理、墨迹管理、格式转换、触摸设置、激活管理
- 基于 dotnetCampus.EasiPlugin.Sdk v2.1.1-alpha.3 插件框架
- WPF 安装向导(欢迎页 -> 安装页 -> 完成页)
This commit is contained in:
miao-moe
2026-06-28 06:51:35 +00:00
commit 8dd1eed519
40 changed files with 8966 additions and 0 deletions

19
Manager/App.xaml Normal file
View File

@@ -0,0 +1,19 @@
<!--
App.xaml - Better-Seewo 管理器应用程序入口
定义应用程序级别的资源和启动设置
-->
<Application x:Class="Better_Seewo.Manager.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<!-- 应用程序级资源 -->
<Application.Resources>
<!-- 深色主题(默认) -->
<ResourceDictionary Source="Themes/DarkTheme.xaml" />
<!-- 浅色主题 -->
<ResourceDictionary Source="Themes/LightTheme.xaml" />
</Application.Resources>
</Application>