Example #1
0
        private void focusbtn_Click(object sender, EventArgs e)
        {
            mainform.GetFocuspara(ref groove, ref wedge, ref probe, ref position);
            FormFocus formfocus = new FormFocus(mainform, groove, wedge, probe, position);

            formfocus.Show();
        }
Example #2
0
 public FormGateSetting(FormFocus formfocus, GateInformation gateb)
 {
     InitializeComponent();
     gateB          = gateb;
     this.formfocus = formfocus;
     InitGateInforemation();
 }
Example #3
0
        public FormModify(FormFocus fromFocus, int flag, Groove gro, int meth)
        {
            InitializeComponent();
            MultiLanguage.getNames(this);

            this.formFocus = fromFocus;
            modifyflag     = flag;
            groove         = gro;
            method         = meth;
            if (modifyflag == 0)
            {
                methodlabel.Visible = false;
                methodbox.Visible   = false;
            }
            Yrange.Text     = "";
            Anglerange.Text = "";
            if (modifyflag == 0)
            {
                Setrange();
            }
        }
Example #4
0
 public FormModify(FormFocus fromFocus)
 {
     InitializeComponent();
     this.formFocus = fromFocus;
 }