예제 #1
0
 private void lvPacientes_MouseDoubleClick(object sender, MouseEventArgs e)
 {
     if (lvPacientes.SelectedItems.Count > 0)
     {
         string nome = lvPacientes.SelectedItems[0].Text;
         marcar.NomePesquisado(nome);
         Close();
     }
 }