示例#1
0
        private void BackBtn_Click(object sender, EventArgs e)
        {
            StoreChanges();
            IDDCollarCal calib = new IDDCollarCal(col, modified);

            calib.Show();
            this.Close();
        }
示例#2
0
        private void NextBtn_Click(object sender, EventArgs e)
        {
            //store changes?
            IDDCollarCal cal = new IDDCollarCal(col, modified);

            cal.Show();
            this.Close();
        }
示例#3
0
        private void NextBtn_Click(object sender, EventArgs e)
        {
            //store changes?
            IDDCollarCal cal = new IDDCollarCal(col, modified);

            cal.StartPosition = FormStartPosition.CenterScreen;
            cal.Show();
            this.Close();
        }
示例#4
0
        private void BackBtn_Click(object sender, EventArgs e)
        {
            StoreChanges();
            IDDCollarCal calib = new IDDCollarCal(col, modified);

            calib.StartPosition = FormStartPosition.CenterScreen;
            calib.Show();
            Close();
        }
示例#5
0
 private void NextBtn_Click(object sender, EventArgs e)
 {
     //store changes?
     IDDCollarCal cal = new IDDCollarCal(col,modified);
     cal.Show();
     this.Close();
 }
示例#6
0
 private void BackBtn_Click(object sender, EventArgs e)
 {
     StoreChanges();
     IDDCollarCal calib = new IDDCollarCal(col, modified);
     calib.Show();
     Close();
 }