待办任务提示,资源管理器菜单功能

This commit is contained in:
liufei
2021-07-28 10:34:37 +08:00
parent 94f32fdb15
commit 1dc77da44e
7 changed files with 1654 additions and 17 deletions

View File

@@ -57,8 +57,22 @@ namespace GeekDesk.ViewModel
private bool selfStartUp = true; //开机自启动设置
private bool selfStartUped = false; //是否已设置
private bool pmModel = false; //性能模式
#region GetSet
public bool PMModel
{
get
{
return pmModel;
}
set
{
pmModel = value;
OnPropertyChanged("PMModel");
}
}
public bool SelfStartUped
{