DebugAppParam.cs 1.84 KB
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using Misc;
7 8
using System.IO;
using Newtonsoft.Json;
9
using System.Threading.Tasks;
潘栩锋's avatar
潘栩锋 committed
10 11 12 13 14

namespace Flyad7_WPF
{
    public class DebugAppParam : INotifyPropertyChanged
    {
15 16 17 18 19 20 21
        public bool HasTimeGrid { get; set; }
        public bool HasGrid { get; set; }
        public bool HasGridAdv { get; set; }

        public int FB_Pos1 { get; set; } = 1000;

        public int FB_Pos2 { get; set; } = 3000;
潘栩锋's avatar
潘栩锋 committed
22

23 24
        public int PosLen { get; set; } = 8900;

潘栩锋's avatar
潘栩锋 committed
25 26
        public event PropertyChangedEventHandler PropertyChanged;

27 28 29 30 31 32 33 34 35 36 37 38
        public DebugAppParam() 
        {
            Load();
            this.PropertyChanged += AutoSave;
        }

        private bool isIgnoreSave;
        private async void AutoSave(object sender, PropertyChangedEventArgs e)
        {
            if (isIgnoreSave)
                return;

潘栩锋's avatar
潘栩锋 committed
39
            //if (this.GetType().GetProperty(e.PropertyName).GetCustomAttributes(typeof(JsonPropertyAttribute), false).Count() > 0)
40 41 42 43 44 45 46
            {
                isIgnoreSave = true;
                await Task.Delay(5000);//Task.Yield();
                Save();
                isIgnoreSave = false;
            }
        }
潘栩锋's avatar
潘栩锋 committed
47 48
        public void Save()
        {
49 50
            try
            {
潘栩锋's avatar
潘栩锋 committed
51
                string json = JsonConvert.SerializeObject(this, Formatting.Indented);
52 53 54 55 56
                File.WriteAllText("param.json", json);
            }
            catch {
            
            }
潘栩锋's avatar
潘栩锋 committed
57 58 59 60
        }

        public void Load()
        {
61 62 63 64 65 66 67 68 69 70
            try
            {
                string json = File.ReadAllText("param.json");
                isIgnoreSave = true;
                JsonConvert.PopulateObject(json, this);
                isIgnoreSave = false;
            }
            catch { 
            
            }
潘栩锋's avatar
潘栩锋 committed
71
        }
潘栩锋's avatar
潘栩锋 committed
72 73


潘栩锋's avatar
潘栩锋 committed
74 75 76 77
    }


}