项目要求更改

This commit is contained in:
2026-03-27 12:39:12 +08:00
parent f40086a0b0
commit 2262c2a1db
16 changed files with 162 additions and 31 deletions

View File

@@ -144,6 +144,16 @@ namespace CapMachine.Wpf.Services
set { _CurUserDto = value; RaisePropertyChanged(); }
}
private bool _IsUserLoggedIn;
/// <summary>
/// 当前用户是否已登录
/// </summary>
public bool IsUserLoggedIn
{
get { return _IsUserLoggedIn; }
set { _IsUserLoggedIn = value; RaisePropertyChanged(); }
}
public IEventAggregator EventAggregator { get; }
public PPCService PPCService { get; }
public IDialogService DialogService { get; }