Beispiel #1
0
 public Plate_Tools(Fit_Growth_Curves.CurveFitter curForm, int sidelength, bool BinaryColors, bool Is48WellPlate)
 {
     UseBinaryColorScheme = BinaryColors;
     AddText         = false;
     IS_48WELL_PLATE = Is48WellPlate;
     SetPlateValues();
     //This is a constructor for making much smaller boxes with no text, it is designed to graphically
     //represent the location of the blanks
     MakeIntsToCellName();
     MakeRowColArray();
     FontofControl       = curForm.Font;
     SideLength          = sidelength;
     RoomForText         = 15;
     totalLength         = (int)(RoomForText + 2 + NumCols * SideLength);
     totalHeight         = (int)(RoomForText + 2 + NumCols * SideLength);
     TheColoredSquaresBM = new System.Drawing.Bitmap(totalLength, totalHeight, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
 }
Beispiel #2
0
 public Plate_Tools(Fit_Growth_Curves.CurveFitter curForm, bool Is48WellPlate)
     : this(curForm, 50, false, Is48WellPlate)
 {
     AddText = true;
 }
Beispiel #3
0
        bool UseBinaryColorScheme = false;//The binary color scheme is designed to show either blanks or not blanks

        public Plate_Tools(Fit_Growth_Curves.CurveFitter curForm)
            : this(curForm, 50, false, false)
        {
            AddText = true;
        }