- 创建 .NET 8 WPF 项目 PersonalToolBox - 引入 NuGet 包: CommunityToolkit.Mvvm, System.Text.Json, Microsoft.Extensions.DependencyInjection - 建立 MVVM 目录结构: Models/ ViewModels/ Views/ Services/ Helpers/ - 实现 LogEntry 模型 (时间/日志级别/内容) - 实现 ILogService 接口与 LogService (线程安全, 通过 Dispatcher 推送到 UI) - 配置 DI 容器 (App.xaml.cs) 注册日志服务和主窗口 - 添加 .gitignore 文件
11 lines
633 B
C#
11 lines
633 B
C#
using System.Windows;
|
|
|
|
[assembly:ThemeInfo(
|
|
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
|
|
//(used if a resource is not found in the page,
|
|
// or application resource dictionaries)
|
|
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
|
|
//(used if a resource is not found in the page,
|
|
// app, or any theme specific resource dictionaries)
|
|
)]
|