🚩 增加列表加密功能
This commit is contained in:
@@ -95,8 +95,36 @@ namespace GeekDesk.ViewModel
|
||||
|
||||
private string sysBakTime; //系统自动备份时间
|
||||
|
||||
private string menuPassword; //锁菜单密码
|
||||
|
||||
private string passwordHint; //密码提示
|
||||
|
||||
#region GetSet
|
||||
public string PasswordHint
|
||||
{
|
||||
get
|
||||
{
|
||||
return passwordHint;
|
||||
}
|
||||
set
|
||||
{
|
||||
passwordHint = value;
|
||||
OnPropertyChanged("PasswordHint");
|
||||
}
|
||||
}
|
||||
public string MenuPassword
|
||||
{
|
||||
get
|
||||
{
|
||||
return menuPassword;
|
||||
}
|
||||
set
|
||||
{
|
||||
menuPassword = value;
|
||||
OnPropertyChanged("MenuPassword");
|
||||
}
|
||||
}
|
||||
|
||||
public string SysBakTime
|
||||
{
|
||||
get
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user