Ejemplo n.º 1
0
 private void cbxBackupProfiles_SelectionChanged(object sender, SelectionChangedEventArgs e)
 {
     using (Proc BackupProfile_s = new Proc("BackupProfile_s"))
     {
         BackupProfile_s["@BackupProfileID"] = cbxBackupProfiles.SelectedValue;
         gridIncrementalHistory.ItemsSource  = BackupProfile_s.Table0.DefaultView;
         FileSystemNode.LoadSelectedNodes(BackupProfile_s.Tables[1]);
     }
 }