private void BTN_AjouterCategorie_Click(object sender, EventArgs e)
        {
            DatabaseOperations.AjouterNewCategorie(TF_NewCategorie.Text);
            DataTable dta = DatabaseOperations.Categories();

            DG_Categories.DataSource = dta;
            TF_NewCategorie.Text     = "";
        }
        private void BTN_AjouterCategorie_Click(object sender, EventArgs e)
        {
            //Pour verifier si les champs textes sont vides
            foreach (var tb in this.Controls.OfType <ns1.BunifuMaterialTextbox>())
            {
                if (tb.Text == "")
                {
                    tb.Focus();

                    MessageBox.Show(tb, "Le champ ne doit pas etre vide ex : " + tb.HintText);
                    return;
                }
            }
            ////////////////////////////////////////////////
            DatabaseOperations.AjouterNewCategorie(TF_NewCategorie.Text);
            DataTable dta = DatabaseOperations.Categories();

            DG_Categories.DataSource = dta;
            TF_NewCategorie.Text     = "";
        }