新增关联文件夹菜单功能
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user