private void button10_Click(object sender, RoutedEventArgs e)
        {
            DatosCehavi datos1 = new DatosCehavi();

            datos1.Connect();


            cita dlg1 = new cita();

            dlg1.CurPaciente = this.curPaciente;
            //dlg1.NombrePaciente = this.NombrePaciente.Text;
            dlg1.ShowDialog();

            MessageBox.Show("Operación realizada", "Información");
            CargaCitas();
        }
        private void button11_Click(object sender, RoutedEventArgs e)
        {
            DataGridCellInfo curcell = dataGrid.CurrentCell;

            object item = dataGrid.SelectedItem;

            if (item == null)
            {
                return;
            }

            object curType = ((DataRowView)dataGrid.SelectedItem).Row[0];
            // string curObject = curType.GetType().ToString();

            Int32 curId = (Int32)((DataRowView)dataGrid.SelectedItem).Row["IdCita"];
            cita  dlg1  = new cita();

            dlg1.CurPaciente = this.curPaciente;
            dlg1.CurCita     = curId;
            dlg1.ShowDialog();

            MessageBox.Show("Operación realizada", "Información");
            CargaCitas();
        }