Esempio n. 1
0
        public SrmCompoundModeForm()
        {
            InitializeComponent();

            this.peptideGraph = new ZedGraphMRMPeptideItemScans(zgcPeptide, this.CreateGraphics());

            this.rtGraph = new ZedGraphMRMPeptideItemRetentionTimes(zgcRetentionTime);

            this.ViewOption = new SrmViewOption();
        }
        public SrmValidatorUI()
        {
            InitializeComponent();

            this.Text = Constants.GetSQHTitle(title, version);

            this.viewOption = new SrmViewOption();

            FileModePeptideItemUpdate += new ZedGraphMRMPeptideItemScans(zgcFileModePeptide, this.CreateGraphics()).Update;
            FileModePeptideItemUpdate += new ZedGraphSrmPeptideItem(zgcAllInOne).Update;
            FileModeProductIonUpdate  += new ZedGraphMRMProductIonScansAndRegression(zgcFileModeTransaction, this.CreateGraphics()).Update;

            CompoundModePeptideItemUpdate += new ZedGraphMRMPeptideItemScans(zgcCompoundModePeptide, this.CreateGraphics()).Update;
            CompoundModePeptideItemUpdate += new ZedGraphMRMPeptideItemRetentionTimes(zgcRetentionTime).Update;

            btnFileMode.PerformClick();
        }