public void AChaEmprestado()
        {
            conexaoBanco pega = new conexaoBanco();
            List<string> armazenaEmprestado = new List<string>();
            foreach (ListViewItem itens in lsvPrincipal.Items)
                armazenaEmprestado.Add(itens.Text);

            if (armazenaEmprestado.ToString() != null)
            {
                List<string> pegaEmprestado = pega.pesqtemEmprestimo(armazenaEmprestado);
                foreach (ListViewItem itens in lsvPrincipal.Items)
                {
                    for (int j = 0; j < pegaEmprestado.Count; j++)
                    {
                        if (pegaEmprestado[j].ToString() == itens.Text)
                            itens.BackColor = Color.LightBlue;
                    }
                }
            }
        }
        private void lsvPrincipal_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Delete)
            {
                List<string> apagar = new List<string>();
                for (int i = lsvPrincipal.SelectedItems.Count - 1; i >= 0; i--)
                {
                    ListViewItem remove = lsvPrincipal.SelectedItems[i];
                    apagar.Add(remove.Text);
                }
                conexaoBanco apaga = new conexaoBanco();
                List<string> armazena = apaga.AchaItemEmprestimo(apagar);
                List<string> armazenaEmprestado = apaga.pesqtemEmprestimo(apagar);
                bool avisa = false;
                string nome = null;
                List<string> pegaNome = new List<string>();
                if (armazenaEmprestado.Count != 0)
                {
                    for (int j = 0; j < armazenaEmprestado.Count; j++)
                    {
                        for (int i = lsvPrincipal.SelectedItems.Count - 1; i >= 0; i--)
                        {

                            if (armazenaEmprestado[j].ToString() == lsvPrincipal.SelectedItems[i].Text)
                            {
                                avisa = true;
                            }
                        }
                    }
                    if (avisa == true)
                    {
                        if (MessageBox.Show("Você selecionou Iten(s) Emprestados, Deseja Realmente Excluir", "Aviso", MessageBoxButtons.YesNo, MessageBoxIcon.Information)
                   == DialogResult.Yes)
                        {
                            for (int j = 0; j < armazenaEmprestado.Count; j++)
                            {
                                for (int i = lsvPrincipal.SelectedItems.Count - 1; i >= 0; i--)
                                {

                                    if (armazenaEmprestado[j].ToString() == lsvPrincipal.SelectedItems[i].Text)
                                    {
                                        apaga.excluiItensEmprestimo(armazenaEmprestado);
                                        apaga.removeItemBanco(armazenaEmprestado);
                                        ListViewItem remove = lsvPrincipal.SelectedItems[i];
                                        remove.Remove();
                                    }
                                }
                            }
                        }
                    }
                }
                if (armazena.Count != 0)
                {
                    apaga.removeItemBanco(armazena);
                    for (int j = 0; j < armazena.Count; j++)
                    {
                        for (int i = lsvPrincipal.SelectedItems.Count - 1; i >= 0; i--)
                        {

                            if (armazena[j].ToString() == lsvPrincipal.SelectedItems[i].Text)
                            {
                                ListViewItem remove = lsvPrincipal.SelectedItems[i];
                                remove.Remove();
                            }
                        }
                    }
                }

            }
        }