🚸 优化快捷键/优化拾色器

This commit is contained in:
liufei
2022-05-25 09:50:43 +08:00
parent a0ba6d4ecd
commit 39607bdcb5
6 changed files with 333 additions and 125 deletions

View File

@@ -86,14 +86,29 @@ namespace GeekDesk.ViewModel
private GradientBGParam gradientBGParam = null; //渐变背景参数
private bool? enableAppHotKey = true; //可能为null
private bool? enableTodoHotKey = true; //可能为null
private bool? enableAppHotKey = true; //可能为null 开启热键
private bool? enableTodoHotKey = true; //可能为null 开启待办热键
private bool enableColorPickerHotKey; //新增 默认为false 不需要考虑null值
private SearchType searchType;
#region GetSet
public SearchType SearchType
{
get
{
return searchType;
}
set
{
searchType = value;
OnPropertyChanged("SearchType");
}
}
public bool EnableColorPickerHotKey
{
get