Beispiel #1
0
        private void wellsMergingToolsToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            cListWells ListWellsToProcess = new cListWells();

            foreach (cPlate TmpPlate in cGlobalInfo.CurrentScreening.ListPlatesActive)
                foreach (cWell TmpWell in TmpPlate.ListActiveWells)
                {

                    if (TmpWell.GetCurrentClassIdx() == -1) continue;
                    ListWellsToProcess.Add(TmpWell);
                }

            ListWellsToProcess.MergeWells();

        }