阶段性批量提交
This commit is contained in:
@@ -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()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user