Files
personal-toolbox/PersonalToolBox/App.xaml.cs
home-PC dc94d17d99 Phase 3 缺陷修复 + 分类管理功能 + ComboBox 主题适配
缺陷修复: 日志自动滚动、StaticResource 顺序修复、ContextMenu PlacementTarget 绑定、PATH 命令支持、异常全量捕获、RefreshData 状态保留、全局崩溃日志

分类管理: 添加/编辑/删除分类,删除时工具移入全部,CategoryEditViewModel/Window

UI 修复: ComboBox 自定义模板,暗色模式弹出层/下拉项主题配色,文本绑定修复
2026-05-09 22:53:19 +08:00

95 lines
3.1 KiB
C#

using System.IO;
using System.Windows;
using Microsoft.Extensions.DependencyInjection;
using PersonalToolBox.Services;
using PersonalToolBox.Views;
namespace PersonalToolBox;
/// <summary>
/// WPF 应用程序入口,负责依赖注入容器初始化和启动主窗口
/// </summary>
public partial class App : Application
{
public static IServiceProvider Services { get; private set; } = null!;
private static readonly string CrashLogPath = Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
"PersonalToolBox", "crash.log");
public App()
{
// 监听未处理的异常,写入文件日志
DispatcherUnhandledException += (s, e) =>
{
WriteCrashLog($"UI线程异常: {e.Exception}");
e.Handled = true;
MessageBox.Show($"发生未处理异常:\n{e.Exception.Message}\n\n详情已写入:\n{CrashLogPath}",
"错误", MessageBoxButton.OK, MessageBoxImage.Error);
};
AppDomain.CurrentDomain.UnhandledException += (s, e) =>
{
WriteCrashLog($"未处理异常: {e.ExceptionObject}");
};
}
protected override void OnStartup(StartupEventArgs e)
{
try
{
base.OnStartup(e);
var services = new ServiceCollection();
ConfigureServices(services);
Services = services.BuildServiceProvider();
// 启动时加载配置文件(含路径验证与容错)
var dataService = Services.GetRequiredService<IDataService>();
dataService.Load();
var mainWindow = Services.GetRequiredService<MainWindow>();
mainWindow.Show();
}
catch (Exception ex)
{
WriteCrashLog($"启动失败: {ex}");
MessageBox.Show($"启动失败:\n{ex.Message}\n\n详情已写入:\n{CrashLogPath}",
"启动错误", MessageBoxButton.OK, MessageBoxImage.Error);
Shutdown();
}
}
/// <summary>
/// 注册所有服务到 DI 容器
/// </summary>
private static void ConfigureServices(IServiceCollection services)
{
services.AddSingleton<ILogService, LogService>();
services.AddSingleton<IDataService, JsonDataService>();
services.AddSingleton<IProcessExecutionService, ProcessExecutionService>();
services.AddSingleton<ViewModels.MainViewModel>();
services.AddTransient<ViewModels.ToolEditViewModel>();
services.AddTransient<ViewModels.CategoryEditViewModel>();
services.AddSingleton<MainWindow>();
}
/// <summary>
/// 将崩溃信息写入文件日志
/// </summary>
public static void WriteCrashLog(string message)
{
try
{
var dir = Path.GetDirectoryName(CrashLogPath);
if (dir != null) Directory.CreateDirectory(dir);
File.AppendAllText(CrashLogPath,
$"[{DateTime.Now:yyyy-MM-dd HH:mm:ss}] {message}{Environment.NewLine}{Environment.NewLine}");
}
catch
{
// 无法写入日志时静默忽略
}
}
}