增加图标排序

This commit is contained in:
liufei
2022-01-22 14:20:04 +08:00
parent ca3d6b50e3
commit 1ef3129017
18 changed files with 317 additions and 55 deletions

View File

@@ -73,7 +73,23 @@ namespace GeekDesk.ViewModel
private bool doubleOpen = false; //双击打开项目 默认关闭
private bool hoverMenu = false; //悬停切换菜单 默认关闭
#region GetSet
public bool HoverMenu
{
get
{
return hoverMenu;
}
set
{
hoverMenu = value;
OnPropertyChanged("HoverMenu");
}
}
public bool DoubleOpen
{
get