private void Ajouter_Click(object sender, EventArgs e)
        {
            TypeOP = add;
            FProduit fc = new FProduit(this);

            fc.Text      = "Ajout Nouveau Produit";
            fc.MdiParent = this.ParentForm;
            fc.Show();
        }
 private void Modifier_Click(object sender, EventArgs e)
 {
     TypeOP = edit;
     if (produit != null)
     {
         FProduit fc = new FProduit(this);
         fc.Text      = "Modification de Produit";
         fc.MdiParent = this.ParentForm;
         fc.Show();
     }
     else
     {
         MessageBox.Show("Selectionné un produit!");
     }
 }