private void btnXoa_Click(object sender, EventArgs e)
        {
            DialogResult dlr = MessageBox.Show("Bạn có muốn xóa dữ liệu không?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question);

            if (dlr == DialogResult.Yes)
            {
                int    index = dataLoaiSP.CurrentCell.RowIndex;
                string ma    = dataLoaiSP.Rows[index].Cells[0].Value.ToString().Trim();
                qlkho.XoaLoaiSP(ma);
                dataLoaiSP.DataSource = qlkho.LoadDLLoaiSP();
                MessageBox.Show("Xóa thành công");
            }
            else
            {
                MessageBox.Show("Xóa thất bại");
                return;
            }
        }