예제 #1
0
 public void RemoveFragment(IList <MsMsSearchUnit> items)
 {
     foreach (var i in items)
     {
         FragmentSearchList.Remove(i);
     }
 }
예제 #2
0
        public void AddFragment(double mz, string ionType)
        {
            var newFragment = new MsMsSearchUnit(mz, ionType);

            FragmentSearchList.Add(newFragment);
            OnPropertyChanged("FragmentSearchList");

            //IProgress<int> progress = new Progress<int>(ReportFragmentSearchProgress);
            //progress.Report(0);
        }