예제 #1
0
        // public string GetPlateID(IRobot robot, string barcode)
        // public IPlateInfo GetPlateInfo(IRobot robot, string plateID)
        // public IPlateType GetPlateType(IRobot robot, string plateTypeID)
        // public IPlateType[] GetPlateTypes(IRobot robot)

        #endregion

        public PlateInfoProviderTester()
        {
            // This call is required by the Windows.Forms Form Designer.
            InitializeComponent();

            // TODO: Add any initialization after the InitializeComponent call

            // Get a PlateInfoProvider
            //pip = new PlateInfoProvider();
            pip = new PlateInfoProviderNew();
        }
예제 #2
0
파일: Form1.cs 프로젝트: chrishmorris/PiMS
        // public ICapturePointList GetCapturePoints(Formulatrix.Integrations.ImagerLink.IRobot robot, string plateID, string imagingID, bool includeOverview)
        // public ICaptureProfile GetDefaultCaptureProfile(Formulatrix.Integrations.ImagerLink.IRobot robot, string plateID)
        // public void GetFirstDrop(Formulatrix.Integrations.ImagerLink.IRobot robot, string plateID, ref int wellNumber, ref int dropNumber)

        #endregion

        #region IImageProcessorProvider Methods

        // public IImageProcessor GetImageProcessor(Formulatrix.Integrations.ImagerLink.IRobot robot, IProcessingInfo processingInfo)

        #endregion

        public Form1()
        {
            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            //
            // TODO: Add any constructor code after InitializeComponent call
            //

            // Get a PlateInfoProvider
            pip = new PlateInfoProvider();
        }
예제 #3
0
        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        protected override void Dispose(bool disposing)
        {
            // Release pip
            pip = null;

            if (disposing)
            {
                if (components != null)
                {
                    components.Dispose();
                }
            }
            base.Dispose(disposing);
        }