完成wpf客户端对主题选择的本地存储

This commit is contained in:
dathlin
2017-07-17 10:41:50 +08:00
parent 7d39440972
commit c27ed9288a
10 changed files with 77 additions and 31 deletions

View File

@@ -117,7 +117,7 @@ namespace CommonLibrary
json.Add(nameof(IsNewVersionRunning), new JValue(IsNewVersionRunning));
json.Add(nameof(SystemInfo), new JValue(SystemInfo));
json.Add(nameof(LoginTime), new JValue(LoginTime));
json.Add(nameof(IsThemeDark), new JValue(false));
json.Add(nameof(IsThemeDark), new JValue(IsThemeDark));
return json.ToString();
}
public override void LoadByString(string content)