新增关联文件夹菜单功能

This commit is contained in:
huangcan
2023-01-29 15:03:38 +08:00
parent 2fd078f722
commit ce17e7174e
9 changed files with 154 additions and 2 deletions

View File

@@ -105,8 +105,27 @@ namespace GeekDesk.ViewModel
private bool? secondsWindow; //秒数窗口 默认打开
private string filterExt = "lnk|exe|cmd|vbs|bat|xls|xlsx|doc|docx|txt|pdf";
#region GetSet
public string FilterExt
{
get
{
if (string.IsNullOrEmpty(filterExt))
{
FilterExt = "lnk|exe|cmd|vbs|bat|xls|xlsx|doc|docx|txt|pdf";
}
return filterExt;
}
set
{
filterExt = value;
OnPropertyChanged("FilterExt");
}
}
public bool? SecondsWindow
{
get