public Config_cilindro(Form callingForm, String[] Nomes_s, int[] saidas_s, int[] avanco, int[] retorno) { Nomes = Nomes_s; saidas = saidas_s; Avanco = avanco; Retorno = retorno; newform = callingForm as AutoClp; InitializeComponent(); }
private void Abrir_Auto() { form2 = new AutoClp(path_project + "\\" + Nome_do_projeto); form2.TopLevel = false; form2.AutoScroll = true; form2.Parent = this; form2.Width = tabPage2.Width; form2.Height = tabPage2.Height; tabPage2.Controls.Add(form2); form2.Show(); }