public BindableConfig() { _attribute = Configuration.Instance; PropertyChanged += (sender, e) => { }; }
private static Configuration initializeConfig() { Configuration c = new Configuration(); c.WindowLeft = 50.0; c.WindowTop = 50.0; c.WindowWidth = 960.0; c.WindowHeight = 540.0; c.SaveFolder = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures); c.AutoSave = false; c.SaveJson(); return c; }