🚩 增加列表加密功能

This commit is contained in:
liufei
2022-06-11 17:15:56 +08:00
parent 3995084776
commit 6b6372847c
16 changed files with 737 additions and 99 deletions

View File

@@ -20,8 +20,22 @@ namespace GeekDesk.ViewModel
private string menuGeometry; //菜单几何图标
private string geometryColor; //几何图标颜色
private ObservableCollection<IconInfo> iconList = new ObservableCollection<IconInfo>();
private bool isEncrypt; //是否加密
public bool IsEncrypt
{
get
{
return isEncrypt;
}
set
{
isEncrypt = value;
OnPropertyChanged("IsEncrypt");
}
}
public string MenuGeometry
{
get