1. 在引用上右击 => 选择管理 Nuget 程序包 => 选择浏览 => 搜索Newtonsoft进行安装
    2. using Newtonsoft.Json;
    3. public string JsPath { get; set; } = $"{cadApp.Path}\\WIdConfigs.json";
    4. public static WeldIDModel ReadJson(string jspath)
    5. {
    6. if (File.Exists(jspath))
    7. {
    8. string jstr = File.ReadAllText(jspath);
    9. return JsonConvert.DeserializeObject<WeldIDModel>(jstr);
    10. }
    11. return new WeldIDModel() { OutBoxCmbx = new List<string>() { "圆", "椭圆" } };
    12. }
    13. public static void WriteJson(WeldIDModel wim, string jspath)
    14. {
    15. if (File.Exists(jspath))
    16. {
    17. if (wim.OutBoxCmbx.Count == 0) wim.OutBoxCmbx = new List<string>() { "圆", "椭圆" };
    18. string jstr = JsonConvert.SerializeObject(wim);
    19. File.WriteAllText(jspath, jstr);
    20. }
    21. }