private void icon_estoque_Click(object sender, EventArgs e) { if (!tab.TabPages.Contains(tab_estoque)) { tab.TabPages.Add(tab_estoque); tab_estoque.Text = "Estoque"; formEstoque = new FormEstoque(this); formEstoque.TopLevel = false; formEstoque.Visible = true; tab_estoque.Controls.Add(formEstoque); tab.SelectedTab = tab_estoque; } else { tab.SelectedTab = tab_estoque; } }
public FormCadastra_produto(FormEstoque formEstoque) { InitializeComponent(); this.formEstoque = formEstoque; }