双击启动 文件小图标修复

This commit is contained in:
liufei
2021-12-21 16:52:31 +08:00
parent 8ee27e247b
commit 88af8324b9
12 changed files with 287 additions and 19 deletions

View File

@@ -70,7 +70,22 @@ namespace GeekDesk.ViewModel
private bool showBarIcon = true; //显示托盘图标 默认显示
private bool doubleOpen = false; //双击打开项目 默认关闭
#region GetSet
public bool DoubleOpen
{
get
{
return doubleOpen;
}
set
{
doubleOpen = value;
OnPropertyChanged("DoubleOpen");
}
}
public bool ShowBarIcon
{
get