hide tray icon (close #563)

This commit is contained in:
jhdxr
2018-12-19 11:46:27 +08:00
parent 7fe01f0764
commit 3dac6fd1c3
5 changed files with 23 additions and 1 deletions

View File

@@ -44,6 +44,16 @@ namespace Wox.Infrastructure.UserSettings
public bool StartWoxOnSystemStartup { get; set; } = true;
public bool HideOnStartup { get; set; }
bool _hideNotifyIcon { get; set; }
public bool HideNotifyIcon
{
get { return _hideNotifyIcon; }
set
{
_hideNotifyIcon = value;
OnPropertyChanged();
}
}
public bool LeaveCmdOpen { get; set; }
public bool HideWhenDeactive { get; set; }
public bool RememberLastLaunchLocation { get; set; }