public DepthCalibrationForm(TableManager tmgr)
 {
     this.InitializeComponent();
     points = new List<TPoint>();
     _tmgr = tmgr;
     _theightc = new TableHeightCalibrator();
     // Insert code required on object creation below this point.
     b_aktualisieren_Click(null, null);
 }
        public form_TableHeightCalibration(int[] DepthArray, int Width, int Height)
        {
            InitializeComponent();

            _width = Width;
            _height = Height;

            _deptharray = DepthArray;
            _theightc = new TableHeightCalibrator();
            _calibrationPoints = new List<TPoint>();
        }