阶段性批量提交

This commit is contained in:
2026-01-05 14:54:06 +08:00
parent 917d76a87f
commit a697aab3e0
21 changed files with 1479 additions and 379 deletions

View File

@@ -1,4 +1,5 @@
using System.ComponentModel;
using System.Diagnostics;
using System.Windows;
using System.Windows.Input;
@@ -9,7 +10,7 @@ namespace SHH.CameraDashboard
/// 它封装了主窗口的所有业务逻辑、状态和用户交互命令。
/// 它还作为一个中心协调者,响应全局事件并管理子视图(如右侧编辑面板和蒙板)。
/// </summary>
public class MainWindowViewModel : INotifyPropertyChanged
public class MainWindowViewModel : INotifyPropertyChanged, IDisposable
{
#region --- ---
@@ -520,5 +521,9 @@ namespace SHH.CameraDashboard
get => _mainContent;
set { _mainContent = value; OnPropertyChanged(); }
}
public void Dispose()
{
}
}
}