增加隐藏托盘图标的功能

This commit is contained in:
liufei
2021-12-13 10:53:55 +08:00
parent 00f581a03e
commit 8958bddb25
4 changed files with 42 additions and 2 deletions

View File

@@ -68,7 +68,22 @@ namespace GeekDesk.ViewModel
private bool mouseMiddleShow = false; //鼠标中键呼出 默认不启用
private bool showBarIcon = true; //显示托盘图标 默认显示
#region GetSet
public bool ShowBarIcon
{
get
{
return showBarIcon;
}
set
{
showBarIcon = value;
OnPropertyChanged("ShowBarIcon");
}
}
public bool MouseMiddleShow
{
get