コード例 #1
0
 public void PopulateListData()
 {
     /* HACK: Have to force refresh here because the instances here and the one used in App.StartInstallation are actually different */
     _db.RefreshDataDisk();
     _items.Clear();
     foreach (var revision in _db.Revisions)
     {
         _items.Add(new RevisionListItem(revision));
     }
     NotifyPropertyChange("InstalledRevisions");
 }