Пример #1
0
        private void tb_click(object sender, DataGridViewCellEventArgs e)
        {
            DataGridView dg = sender as DataGridView;

            try
            {
                if (e.ColumnIndex == 1 && e.RowIndex != -1)
                {
                    var id = dg.Rows[e.RowIndex].Cells[0].Value;

                    Paciente obj = service.Buscar(Convert.ToInt32(id));

                    var form = new frmEditarPaciente(obj);
                    form.ShowDialog();

                    if (form.status == "apagado")
                    {
                        this.Close();
                        frmConPaciente frm = new frmConPaciente();
                        frm.ShowDialog();
                    }
                    if (form.status == "editado")
                    {
                        dg.Rows.RemoveAt(e.RowIndex);
                        GerarLinha(dg, obj);
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show("Erro ao selecionar o dentista " + ex.Message);
            }
        }
Пример #2
0
        private void menuAgPacientes_Click(object sender, EventArgs e)
        {
            frmConPaciente frm = new frmConPaciente();

            frm.ShowDialog();
        }
Пример #3
0
        private void btnConsulta_Click(object sender, EventArgs e)
        {
            frmConPaciente frm = new frmConPaciente();

            frm.ShowDialog();
        }