public override void BuildCompled()
        {
            Modules = new List<ModuleInfo>(AddInListner.AddIns.Select(desc => new ModuleInfo(desc)));

            AddIns = new UISyncObservableCollection<InternalAddInInfo>();
            ReadyAddIns = new UISyncObservableCollection<InternalAddInInfo>();

            ResetAddIns();
        }
 public OptionsViewModel()
 {
     SelectedOptions = new UISyncObservableCollection<Option>();
 }
 public void Deserialize()
 {
     Profiles = new UISyncObservableCollection<string>(_radioEnvironment.Settings.EncoderProfiles.Profiles);
 }
Esempio n. 4
0
 public OptionGroup()
 {
     Options = new UISyncObservableCollection<Option>();
 }