コード例 #1
0
ファイル: EvaluacionGrupal.cs プロジェクト: Raimmaster/SED
 private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
 {
     int id_depto = int.Parse(dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString());
     GraficaDepto gb = new GraficaDepto(con, id_depto);
     this.Hide();
     gb.ShowDialog();
     this.Show();
     this.Close();
 }
コード例 #2
0
ファイル: EvaluacionGrupal.cs プロジェクト: carlosv14/SED
        private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            int          id_depto = int.Parse(dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString());
            GraficaDepto gb       = new GraficaDepto(con, id_depto);

            this.Hide();
            gb.ShowDialog();
            this.Show();
            this.Close();
        }