Пример #1
0
        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;
            }
        }
Пример #2
0
 public FormCadastra_produto(FormEstoque formEstoque)
 {
     InitializeComponent();
     this.formEstoque = formEstoque;
 }