Пример #1
0
 private void ToolStripMenuItem_Info(object sender, EventArgs e)
 {
     cDisplayText DT = new cDisplayText();
     DT.SetInputData(this.GetInfo());
     DT.Title = "Info["+this.CurrentTitle.Text+"]";
     DT.Run();
 }
Пример #2
0
        //void RemoveDescItem(object sender, EventArgs e)
        //{
        //    System.Windows.Forms.DialogResult ResWin = MessageBox.Show("By applying this process, the selected descriptor will be definitively removed from this analysis ! Proceed ?", "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
        //    if (ResWin == System.Windows.Forms.DialogResult.No) return;
        //    CompleteScreening.ListDescriptors.RemoveDesc(CompleteScreening.ListDescriptors[IntToTransfer], CompleteScreening);
        //    //CompleteScreening.UpDatePlateListWithFullAvailablePlate();
        //    for (int idxP = 0; idxP < CompleteScreening.ListPlatesActive.Count; idxP++)
        //        CompleteScreening.ListPlatesActive[idxP].UpDataMinMax();
        //    CompleteScreening.GetCurrentDisplayPlate().DisplayDistribution(CompleteScreening.ListDescriptors.CurrentSelectedDescriptor, false);
        //}
        void ToolStripInfoDescriptor(object sender, EventArgs e)
        {
            cDisplayText DT = new cDisplayText();

            DT.SetInputData(cGlobalInfo.CurrentScreening.ListDescriptors.GetInfo());
            DT.Title = "Descriptors info";
            DT.Run();
        }
        private void infoToolStripMenuItem_Click(object sender, EventArgs e)
        {
            cDisplayText DT = new cDisplayText();

            string infoToDisp = "";

            if (AssociatedListWells != null)
            {
                foreach (var item in this.AssociatedListWells)
                {
                    infoToDisp += item.GetShortInfo() + "\n";
                }
            }

            infoToDisp += "\n" + AssociatedListWells.Count + " selected wells - " + this.GetActiveSignatures(false)[0].Count + " / " + this.InputTable[0].Count + " points.";

            DT.Title = "Single cell analysis info";
            DT.SetInputData(infoToDisp);
            DT.Run();
        }
Пример #4
0
 private void ToolStripMenuItem_DisplayInfo(object sender, EventArgs e)
 {
     cDisplayText DT = new cDisplayText();
     DT.SetInputData("["+ this.Input[GridView.SelectedColumns[0].Index].Name + "]\n\n"+this.Input[GridView.SelectedColumns[0].Index].GetInfo());
     DT.Run();
 }
Пример #5
0
 private void ToolStripMenuItem_Info(object sender, EventArgs e)
 {
     cDisplayText DT = new cDisplayText();
     DT.SetInputData(this.GetInfo());
     DT.Run();
 }