コード例 #1
0
 private void model_SpectrumSelected(object sender, IdentificationFeatureSelectedEventArgs e)
 {
     if (SpectrumSelected != null)
     {
         SpectrumSelected(sender, e);
     }
 }
コード例 #2
0
 private void model_SpectrumSelected(object sender, IdentificationFeatureSelectedEventArgs e)
 {
     if (SpectrumSelected != null)
     {
         SpectrumSelected(sender, e);
     }
 }
コード例 #3
0
        private void OnSpectrumSelected(UMCLight feature)
        {
            if (SpectrumSelected != null)
            {
                Peptide peptide = null;
                if (m_feature.Peptides != null && m_feature.Peptides.Count > 0)
                {
                    peptide = m_feature.Peptides[0];
                }

                var args = new IdentificationFeatureSelectedEventArgs(
                    m_feature,
                    peptide,
                    feature);


                SpectrumSelected(this, args);
            }
        }
コード例 #4
0
 private void cluster_SpectrumSelected(object sender, IdentificationFeatureSelectedEventArgs e)
 {
     SelectedSpectrum = e.Spectrum;
 }
コード例 #5
0
 private void cluster_SpectrumSelected(object sender, IdentificationFeatureSelectedEventArgs e)
 {
     SelectedSpectrum = e.Spectrum;
 }
コード例 #6
0
ファイル: MsMsTreeViewModel.cs プロジェクト: msdna/MultiAlign
        private void OnSpectrumSelected(UMCLight feature)
        {
            if (SpectrumSelected != null)
            {
                Peptide peptide = null;
                if (m_feature.Peptides != null && m_feature.Peptides.Count > 0)
                {
                    peptide = m_feature.Peptides[0];
                }

                var args = new IdentificationFeatureSelectedEventArgs(
                    m_feature,
                    peptide,
                    feature);

                SpectrumSelected(this, args);
            }
        }