Beispiel #1
0
        void IPersistable.Load(SettingsStorage storage)
        {
            Code = storage.GetValue <string>("Code");
            CodePanel.References.Clear();
            CodePanel.References.AddRange(storage.GetValue <CodeReference[]>("References"));
            CodePanel.Load(storage.GetValue <SettingsStorage>("CodePanel"));
            //ResultChart.Load(storage.GetValue<SettingsStorage>("ResultChart"));
            //ResultGrid.Load(storage.GetValue<SettingsStorage>("ResultGrid"));
            _parameters.Load(storage.GetValue <SettingsStorage>("Parameters"));

            CodePanel_OnCompilingCode();
        }
Beispiel #2
0
 void IPersistable.Load(SettingsStorage storage)
 {
     CodePanel.Load(storage.GetValue <SettingsStorage>("CodePanel"));
 }