private void button3_Click(object sender, EventArgs e)
 {
     try
     {
         string item = Carros[Lb_Tudo.SelectedIndex];
         MessageBox.Show(item);
         Tb_Adicionar.Focus();
     }
     catch
     {
         MessageBox.Show("tem que ter algum item para poder ser exibido!");
     }
 }
 private void btn_Add_Click(object sender, EventArgs e)
 {
     if (!String.IsNullOrWhiteSpace(Tb_Adicionar.Text))
     {
         Carros.Add(Tb_Adicionar.Text);
         UpdateDataSource(Lb_Tudo, Carros);
         Tb_Adicionar.Clear();
         Tb_Adicionar.Focus();
     }
     else
     {
         MessageBox.Show("safadinho, ta tentando quebrar meu sistema ne");
     }
 }